I'm using client side data binding using WebServices and JSON. The grid works great but has some issues. I guess the client side binding is not there yet. :)
The issue I am facing right now is while using GridClientSelectColumn. After initial load, when I change the page and bind grid on client side, all the check boxes get removed from Select column.
I also looked at RadGrid javascript code to see if I am doing something wrong but there is no handling for GridClientSelectColumn type in there.
This works well after I change the RadGrid javascript code in dataBind method by injecting:
Can someone suggest a solution?
Thanks
The issue I am facing right now is while using GridClientSelectColumn. After initial load, when I change the page and bind grid on client side, all the check boxes get removed from Select column.
I also looked at RadGrid javascript code to see if I am doing something wrong but there is no handling for GridClientSelectColumn type in there.
This works well after I change the RadGrid javascript code in dataBind method by injecting:
if (_244[j]._data.ColumnType == "GridClientSelectColumn") { |
var _254 = cell.getElementsByTagName("input"); |
if (_254.length > 0 && _254[0].type == "checkbox") { |
if (_254[0].checked) { |
_254[0].checked = false; |
_248.set_selected(false); |
} |
} |
} |
Can someone suggest a solution?
Thanks