Hi, I have a WebDataGrid, I fill them with a DataTable obtain when the user select a DropDownList opcion, if I select a row and change the selection in the Drop Down, if I try the select the same row I can't, in the ASP.Net GridView I can use GridView.SelectIndex = -1 to unselect the row selected after the databind, in the Infragistic WebDataGrid how can I do that to unselected the row?
Thanks
Jose
Hi,
Try
var Grid = igtbl_getGridById(gridName);
Grid.clearSelectionAll();
or
igtbl_clearSelectionAll(Grid);
Is this JavaScript? I would like to create a button that clears the selection of a grid, but I can't seem to get the right JavaScript method.