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
Hello,Please take a look at the link below:
http://samples.infragistics.com/2008.2/webfeaturebrowser/default.htmGrid->Client Cell Looping
Hope this helps.