Way to intermix serverfilter and other filters in the same datatable?

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.

Maksim,

Thanks for the response. It’s not critical for my site, I was just wondering if there was a way to use both.

It works for sorting, as a datatable can be sorted by one column at once.
In a case of filtering, it doesn’t work as a grid is filtered by ALL filters. So it needs to apply both “server” side filters and client side filters on top of them, which is not supported for now.

if this is a critical requirement for your use-case, you can contact sales@webix.com about a possible customization.