I need to be able to call javascript functions from row tags in the DataGrid. So that when the Grid is rendered the row tag <TR> would look something like this:
I'm certain you would code this in the ItemDataBound Sub, but how to reference the DataGrid's row (not cell), I haven't been able to discover.
Thanks for all the help.
Code:
.......
<tr onmouseover="bgOn(this)" onmouseout="bgOff(this)" onclick="displayData('every good boy does fine')">
<td align="Center" style="border-width:1px;border-style:solid;width:38px;">
<input id="Grid1__ctl6_chkSelect" type="checkbox" name="Grid1:_ctl6:chkSelect" />
</td><td align="Left" style="border-width:1px;border-style:solid;width:70px;">
......
I'm certain you would code this in the ItemDataBound Sub, but how to reference the DataGrid's row (not cell), I haven't been able to discover.
Thanks for all the help.