SelectFilter with dynamic datatable

Hello!
I have a datable with server side filtering/sorting. Now I would like to have on some columns a select box for filtering. I set serverSelectFilter instead of serverFilter, it works, but it have options for select only from first page.

So, i understand this behavior, because of dynamic loading send only part of data and filter get only few options for select. But how can i make selectbox with all of options, if i have this list of options and it cant be changed? Can i make some preparing hardcode for setting all possible options in selectbox?

Thanks a lot. Sorry for bad language.

Hello! You can set all options on the client side, like in the snippet below:

http://webix.com/snippet/a9270ac5

Or load the options from the server. See the code of the example:

http://docs.webix.com/samples/15_datatable/03_filtering/12_options_loading.html

serverSelectFilter inherits from the selectFilter, so both solutions will work.

Thanks a lot! Works great!