Author Topic: check box with click event  (Read 1575 times)

bsolTeamBglr

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 41
    • View Profile
check box with click event
« 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,

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6265
    • View Profile
Re: check box with click event
« Reply #1 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);
}