Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > SetHiddenValue |
Sets a value in a hidden cell.
[JavaScript]
FpSpread1.SetHiddenValue(r, colName, value);
None
This method puts a value in a hidden cell at the specified row and column.
This is a sample that contains the method.
On the server side on page load:
Code |
Copy Code
|
---|---|
FpSpread1.Sheets[0].Columns[0].Visible = false; FpSpread1.Sheets[0].Cells[0, 0].Text = "test"; |
On the client side, the script that contains the method would look like this:
JavaScript |
Copy Code
|
---|---|
<script type="text/javascript"> function ProfileSpread() { var spread = document.getElementById("FpSpread1"); var v = spread.GetHiddenValue(0, "A"); alert(v); spread.SetHiddenValue(0, "A", "test2"); alert(spread.GetHiddenValue(0, "A")); //'test2' } </script> |