I need to access the Rows collection of the RadGrid on the client-side in javascript.
I know this can be done usually by doing:
var row = this.Rows[rowIndex];
...but only if you invoke the javascript directly from the grid...
What do I do if I need to access the rows collection and I've declared the grid like this:
var grid = document.getElementById('gvGrid');
var row = ??????
?
Thanks
AndyL