I have a grid with filters working fine. My issue is, if I give 1.00 in the search field. It shows the result with data 1.00, 10.00, 100.00, etc. I want only to show the result with data 1.00 only. The following is my code:
me.grid.store.filter(key, values[key]);
Here, 'key' is the column name and 'values[key]' is the text that is entered in search field. I think this filter rounds off my number.
Help me. Thanks in advance.