Date Filtering Not Working in DataTable

I’m trying to use the date filtering functionality of the data table but it looks like it’s not working. I’ve created a new date and displayed it in dd/mm/yyyy format in the table. But in the filter box I have to enter the format as mm.dd.yyyy . How can I fix this so users can enter the filter in dd.mm.yyyy (or dd/mm/yyyy) format. Please see my snippet below.

https://snippet.webix.com/7lqbm3lg

Hello @AllanSham,
The fact is that thedateFilter works according to the current locale.
For the “en-US” locale the default date format is mm-dd-yyyy. You can redefine it using:

webix.i18n.dateFormat = "%d-%m-%Y";
webix.i18n.setLocale(); 

Example: Code Snippet

Please check more information about formatting:
https://docs.webix.com/desktop__working_with_dates.html