multicombofilter set filter values after data load

I’m using multicombofilter with datatable. Is there an equivalent to the following?
$$('datatable').sort("date_column", "desc", "date"); $$('datatable').markSorting("date_column", "desc");

I’ve tried the following, but it doesn’t seem to work.
$$('datatable').getFilter('combo_column').value = 1;

Hello, @mykal

To set the value to a filter is possible with the setValue method.
Please, check the snippet here:Code Snippet