ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: bsolTeamBglr on September 19, 2017, 02:34:11 pm

Title: check box with click event
Post by: bsolTeamBglr on September 19, 2017, 02:34:11 pm
Hi,

I needs to non edit the particular cell when the check box is checked in the same row.

Kindly assist me on this.

Thanks,
Title: Re: check box with click event
Post by: paramvir on September 19, 2017, 07:05:00 pm
Please use column.editable callback if cell is affected in only one column

Code: [Select]
editable: function(ui){
return (ui.rowData[dataIndx of checkbox column] !== true);
}