Search not working for column name with "#" special character

Hi,
In the below script, if the column name is having “#” character in it then the search option is not working.
In this case, #oil search is not working
https://snippet.webix.com/cvir645a

Can you please help on the above query?

Hello @sangeetha ,
The fact is that the filter() method can take in the names of fields in two ways - with #(template), and without.
Because of this, in your example, filtering occurs by field with the name “oil” instead of “#oil”.
As a solution, you can use the compare function in which you define filtering rules.
Please take a look at the example:
https://snippet.webix.com/bt307qzd

thanks @annazankevich