I have a radgrid with all columns at template columns and grid is in editmode all the time.
I need to capture row index changed event for each row so whenever user navigates from one row through other
I can validate existing row data before going to new row.
When I click through controls, onActiveRowChanged or onRowSelecting does not seem fire. How can I do that. Is there any client event to validate row
or something else like that.
Here is my client event markup on the grid.
<ClientSettings Selecting-AllowRowSelect="true" KeyboardNavigationSettings-AllowActiveRowCycle="true"> <ClientEvents OnActiveRowChanged="RowChanged" OnRowSelected="RowChanged" /> </ClientSettings>