Hi
I am using follwing javascript:
but the selrowName and selRowID throws me javascript error:
"Object doesn't support this property or method"
I have tried following but didn't worked for me.
"Note: The ShowHeader attribute for the RadGrid/MasterTableView should be set to true in order to use this method."
Please help on this.
I am using follwing javascript:
| var grid; |
| function RowSelected(rowObject) { |
| var selRowName = this.GetCellByColumnUniqueName(rowObject, 'name'); |
| var selRowId = this.GetCellByColumnUniqueName(rowObject, 'id'); |
| } |
| function GridCreated() { |
| grid = this; |
| } |
but the selrowName and selRowID throws me javascript error:
"Object doesn't support this property or method"
I have tried following but didn't worked for me.
"Note: The ShowHeader attribute for the RadGrid/MasterTableView should be set to true in order to use this method."
Please help on this.