Is possible checkbox inside double list ?
https://snippet.webix.com/38e2lzhq
and how to get the check values ?
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: Code Snippet.
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 - Code Snippet. Naturally, you can do the same while iterating over all of the data items - Code Snippet.
Great !
Thanks @Dzmitry