Checkbox inside double list

Is possible checkbox inside double list ?
https://snippet.webix.com/38e2lzhq

and how to get the check values ?

Hello @finzaiko,

Is possible checkbox inside double list ?

Sure, you can add a checkbox to the inner list via a custom template. Template allows you to display any HTML content and format the incoming data in various ways. Please take a look at the following example: https://snippet.webix.com/t720phhd.

and how to get the check values ?

This depends on the specific functionality you’d like to see, but generally you will want to check the markCheckbox property (if we go by the example above) of a given item (1 means the item is checked, 0 - unchecked). For instance - https://snippet.webix.com/94dxv4j3. Naturally, you can do the same while iterating over all of the data items - https://snippet.webix.com/dsrjzk8y.

Great !
Thanks @Dzmitry