Categories | Question details Back To List | ||
clearing one row How can I deselect one row ? My goal is to have all rows with checked checkboxes selected. So I added onCheck event handler. Selecting a row is not a problem. The problem is clearing a row when user unchecks a checkbox. thanks Victoria Answer posted by dhxSupport on Nov 17, 2009 02:46 Unfortunately there is no such public functionality. As workaround you can mark checked rows with other background color: grid.setRowTextStyle(rowId, "background: #some color;"); |