Default value on selectFilter

Hi,
I have a table with the “selectFilter” on the header of the column.
Can I a default value on the filter?

https://snippet.webix.com/o94izzbw
Thanks

In such implementation, options of the filter will be ready for usage after data is loaded to the grid.
Also, please note that the initial request via url will be sent with no filtering parameters.

As a solution, you can catch the moment of initial data loading, set the needed filters and trigger data filtering (server-side request, as you have serverFilters):

Code Snippet

Thanks