Hello,
I would like to know if it's possible to make an Handler on a ColumnType.CheckBox
Someting like this :
Grid.DisplayLayout.ClientSideEvents.ClickCellButtonHandler
But like this :
Grid.DisplayLayout.ClientSideEvents.ClickCellCheckBoxHandler
Thanks a lot for your help
Hello paralleles,
You can use the AfterCellUpdateEvent to capture when the value is changed. Then you can interrogate the cell index to verify which column is triggering the event:
function UltraWebGrid1_AfterCellUpdateHandler(gridName, cellId){ var cell = igtbl_getCellById(cellId); if (cell.Index == 0) { //do work }}
Hope that helps.