Hi,
I’m trying to use both server filter and, say, number filter in the same grid. I’m trying to do this because I want to let the user actively search via the server where possible, but I have some values in the datatable converted from my database (in this case, temperature), so searching via server request doesn’t work for the values if the user uses the non-database temperature setting (would work for fahrenheit OR celsius (whichever the database stores), not both).
The problem is that once I have a single column in a datatable search via serverFilter, every column in the datatable switches to serverFilter.
Here’s a code snippet (non-functional because of made up db link):
http://webix.com/snippet/35073239
Intermixing sorting works fine–the name column sorts by server, whereas the temp column sorts by numbers. It’s just the number searching that doesn’t work.
The searching for all the values works okay when I switch everything to textFilter/numberFilter/etc.
Thanks.