Enable/Disable state checkbox on datatable

Hello,
Can i set checkbox disable / enable on datatable after edit some column on datatable?
Detail description inside this snippet

https://snippet.webix.com/evw2np4q

Thank You.

@Vicky_Paulantono
try to implement custom template

template: function(obj, common){
          var checkbox = common.checkbox.apply(common, arguments);
          if(!obj.name) checkbox = checkbox.replace("<input", "<input disabled");
          return checkbox;
}

https://snippet.webix.com/e8kufktp

Perfect ! Thank you :smiley: