Datatable Filter Date Format problem

Hello,
I have a problem with the excelFilter when mode is date.
The french format works but when I want to filter on the date it’s not working
https://snippet.webix.com/9whhwddi

Hello @matty ,
Date filtering works if dates are presented as date objects. Format property affects only the data visualization (as well as the template).
Thus, if your dates come as strings, you need to map them or create a related parser to fill the datatable with the correct object dates. Something like:

view:"datatable",
scheme:{
  $init:function(obj){
       obj.createdDate = /*parse string into date*/
   }
}

Please take a look at the snippet:
https://snippet.webix.com/xko3j4b9