I have been converting code from .Net 3.0 to .Net 4.5 now I'm having error on javascript for radgrid with checkbox under
Function RowCreated(gridRow){
...
...
var gridtable = this;
checkBox.onclick = function ()
{
gridtable.Selectrow(gridRow.Control,false); ---> this has JS runtime error: Object doesn't support property or method 'Selectrow'
};
Any alternative code to be able to select row when checbox checked. or radio button checked..
Thanks in advance,
RJ
Function RowCreated(gridRow){
...
...
var gridtable = this;
checkBox.onclick = function ()
{
gridtable.Selectrow(gridRow.Control,false); ---> this has JS runtime error: Object doesn't support property or method 'Selectrow'
};
Any alternative code to be able to select row when checbox checked. or radio button checked..
Thanks in advance,
RJ