Get item in datatable by option ?

Hi all !

Can Webix support get item by option ?

Can i find a item in datatable with an attribute of item ?

And how do get range items in datatable without use eachRow ?

There is no native find functionality. You can use filterBy ( will find and show results only ) or use eachRow to go through all rows and run some actions against matched ones.

For date range selecting you can fall back to low level API

$$(“dt”).data.order is an array of ID’s. In the same order as order of visible rows. You can iterate through them in necessary order

Thank @maksim