Hi
On thread:
http://www.telerik.com/community/forums/aspnet-ajax/grid/get-row-number-of-grid.aspx
It shows the following:
The above gets the row index.
It seem to me that parentNode.ParentNode gets one to the row. If context is correct, so from there I should be able to find other controls in the grid data row. So how do I find the data row object context (not html) and then find other controls.
Phil
On thread:
http://www.telerik.com/community/forums/aspnet-ajax/grid/get-row-number-of-grid.aspx
It shows the following:
<script type="text/javascript" language="javascript"> |
function onFocus(sender, args) |
{ |
var cell = sender.get_element().parentNode.parentNode; |
alert(cell.parentNode.rowIndex); |
} |
</script> |
It seem to me that parentNode.ParentNode gets one to the row. If context is correct, so from there I should be able to find other controls in the grid data row. So how do I find the data row object context (not html) and then find other controls.
Phil