Hello,
Is it possible not to activate a give cell when the check box is selected for that cell or a way to cancel the activation but have the check occur?
Later,
Mike
Hello Mike,
Looks like you want to handle the WebGrid's client side event of BeforeCellChangeHandler and if the cell is the checkbox cell then stop the activation but allow the check to toggle... something like this:
function UltraWebGrid1_BeforeCellChangeHandler(gridName, cellId){
var cell = igtbl_getCellById(cellId);
if (cell.Column.Key == "CheckBoxCol"){
return true;
}