Hello,
I am implementing my client side functions for selecting rows (which needs to handle other tasks), so I am using the javascript code similar to following:
I am implementing my client side functions for selecting rows (which needs to handle other tasks), so I am using the javascript code similar to following:
var
masterTable = window["<%= My_RadGrid.ClientID %>"].MasterTableView;
masterTable.SelectRow(masterTable.Rows[rowIndex].Control,
false);
The problem is, how to get a correct rowIndex. When I use GridDataItem ItemIndex property it returns a index which does not count GridGroupHeaderItems - so I can not use it in client side SelectRow function.
So Can I somehow find an index of GridDataItem row in ItemCreated event handler so that this index count GridGroupHeaderItems?