Hi, i tried to get ID from row double click, but it always shows a null.
here's my JS...
which always return null
here is my Grid Click Event
here's my JS...
| function EditAct(sender, eventArgs) { |
| var grid = sender; |
| var MasterTable = grid.get_masterTableView(); |
| var row = MasterTable.get_dataItems()[eventArgs.get_itemIndexHierarchical()]; |
| alert(row.getDataKeyValue('Act_No')); |
| } |
which always return null
here is my Grid Click Event
<ClientEvents OnRowDblClick="EditAct" />
any assistance would be appreciated, thanks!