Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
Unselect rows
posted

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

Parents
No Data
Reply
  • 215
    posted

    Hi,

    Try 

    var Grid = igtbl_getGridById(gridName);

    Grid.clearSelectionAll();

    or

    igtbl_clearSelectionAll(Grid);

    or

     

     

Children