textFilter multiple keywords

If i have a multiple level treetable, is it possible to modify textFilter to filter mutiple keywords across different items? for example

http://webix.com/demo/tree/filtering/

Is there away to customize textFilter so that you can type in something like “Avalon; Octavia” and the result will only show those two items?

Hi,

You can provide any logic in a filtering function. Check the following snippet: http://webix.com/snippet/e5c32051

Additionally, you can define whether sub items of filtering result should be shown or not, as well as define on which level items should be filtered. http://docs.webix.com/datatree__filtering.html#filteringmodes

But the filtered item will always be shown with all its parents so that hierarchy is always clear.

Amazing! thank you!