How to get child rows on click parent row in Treetable

How to get child rows on click parent row in Treetable

Hey @kishorech, you can use TreeStore’s method eachChild to iterate through all of the first-level child nodes of the specified branch. If you want to get all of child nodes that are nested depper inside, you can use eachSubItem instead.

Here’s an example of how this would work: https://snippet.webix.com/vc3qv94o.

Thank you Dzmitry