dateRangeFilter doesn't work

Hi, I have this code, https://snippet.webix.com/jjh7biqz I trying to use “dateRangeFilter” but the filter doesn’t work at line 55, maybe it’s the format of the date but I tried many ways but nothing changed, thanks.

Hello @Hellekin,

I trying to use “dateRangeFilter” but the filter doesn’t work at line 55, maybe it’s the format of the date but I tried many ways but nothing changed

Any date filter will work with Date objects only. Thus, you will have to convert your date string into a Date object upon the initial data loading. This can be done via a scheme. Please take a look at the following example: https://snippet.webix.com/9e2yemnw.

An important note: any date filter assumes that the time value of any given date is 00:00:00, meaning it will only filter values based on the day/month/year, which is why it is important to provide the correct Date object (with the time set to 00:00:00). This is achievable with the help of the webix.Date.dayStart method (as can be seen from the example).