Hi
I am setting the value of one of my GridBoundColumn in Client Side , that is getting displayed after setting, but I am not able to read the set value in server side. Below is my code snippet. Please let me know where i am getting wrong?
<!-- Setting value in Client Side -->
I am setting the value of one of my GridBoundColumn in Client Side , that is getting displayed after setting, but I am not able to read the set value in server side. Below is my code snippet. Please let me know where i am getting wrong?
<!-- Setting value in Client Side -->
masterTable.getCellByColumnUniqueName(masterTable.get_dataItems()[i],
"ColumnUniqueName").innerText = "someText";
-----------------------------------------
Reading Server side in _NeedDataSource Event.....
string
myVal = item["ColumnUniqueName"].Text.ToString();
myVal is coming for the GridBoundColumn which value is set through client side.
Please help.
Thanks in advance.
Arvind