|
Title: Datagrid checkbox toggle group Post by: devnull on July 04, 2014, 03:32:33 AM I have 2 checkboxes in a datagrid in seperate columns that allow the user to only select one option (Pass/Fail) and not to select both.
I need for the checkboxes to always be visible and the default state should be that both are unchecked. Then if the user checks one, if the other is checked it should be un-checked. The problem is that the checkboxes only appear once the user clicks the line, and I need them to be always visible. I also need to update the STATUS field to display the Pass / Fail status but I can probably figure that out. Code: $('#qpdata').datagrid({Title: Re: Datagrid checkbox toggle group Post by: stworthy on July 04, 2014, 07:15:21 AM When begin to edit a row, the 'onBeginEdit' event fires. You can get the editors and bind some events to achieve you functionality.
Code: $('#dg').datagrid({ |