Hi All,
I have two gripds on a web page. When I select the row in the 1st grid then the second grid data has to accordingly. So I need to get the row number the user has selected. So please let me know which event is fired when clicked on the first.
The same can be done in Windows web grid.
Thanks
On the client side, you can setup the javascript event CellClickHandler (displaylayout, clientsideevents), then get the row using a webgrid utility function:
function UltraWebGrid1_CellClickHandler(gridName, cellId, button){ var row = igtbl_getActiveRow(gridName);}
Can you please send me a sample of handling this. Because I am not able to use the function igtbl_getActiveRow in my script?