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
130
Deselect/Unselect a row with unchecking a check box
posted

My ultrawebgrid has a check box column, users want to select and deselect the row by checking/unchecking the check box. I got the check and select row part working.

I am not able to uncheck and deselect a row in ultrawebgrid. I am implementing AfterUpdateHandler and tried a couple of variations of JS to unselect the row depending on the checkbox value:

var cell = igtbl_getCellById(cellid);

 1. igtbl_selectRow(gridname,cell.Row.Element.id, false);

2. cell.Row.Selected = false;

3. cell.Row.setSelected(false);

Has anyone done this before and if so, what is the right way to do it.

Thanks for your help

Sam