Categories | Question details Back To List | ||
How to uncheck a radio button available in the grid Hi, When I click on a button, It should uncheck the selected radio button in the grid. How can i do this? Thanks, Sachin M Answer posted by Support on Dec 03, 2008 07:49 Can be done as var id=grid.getCheckedRows(COLUMN); grid.cells(id,COLUMN).setValue(0); where COLUMN - index of column with radiobuttons |