Checkboxes in webix tree

Hello

Webix tree provides posibility to use checkboxes with tree-nodes. The posibility is activated through field “template” of tree object.
It shows checkboxes for each node.

But, if I need to show checkboxes for restricted set of nodes, how can I do this?

Thanks in advance!

It can be done through template as well. You can define template as a function, where you can place logic that will show checkboxes only for specific items.

http://webix.com/snippet/229fe174

Thank you very much!