Hello.
For you information, the javascript code I have used to get the value of a hidden value is:
The ASP.NET code is:
The Visible and Display settings are important.
I hope this can help other developers.
Regards
Augusto
For you information, the javascript code I have used to get the value of a hidden value is:
function GetSelectedRowCellValue(sender, args) { var grid = $find("RadGridMain"); var selected = grid.get_masterTableView().get_selectedItems(); if (sel.length > 0) { var row = grid.get_masterTableView().get_selectedItems()[0]; var cellValue = grid.get_masterTableView().getCellByColumnUniqueName(row, "TheColumnName").innerText; ... } ... }The ASP.NET code is:
<telerik:GridBoundColumn DataField="TheColumnName" UniqueName="TheColumnName" DataType="System.Int32" Visible="true" Display="false" /> The Visible and Display settings are important.
I hope this can help other developers.
Regards
Augusto