Datatable: date filter format

Hello,

I want to use date filter in my datatable:
http://webix.com/snippet/fee9e38e

Cells are showing date in dd-mm-yyyy order. Is it possible to use date filter in this order instead of default mm-dd-yyyy?

Thanks!

dateFilter works according to the current locale (we’ll correct our docs - thank you for pointing it out).

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(); 

http://webix.com/snippet/bd0eb896