Is it possible to set a table's filters and sort order with URL parameters?

@justin Where would you put that? When can I set the filter attributes on a table?

I don't want to pass in the values to the query that populates the table, I want all of the data to come back so they can clear the filters if they want and see all of the data.

This is what I'm doing with the URL parameters, :

What gets stored in the URL:
tableFilter = {{JSON.stringify(users_list.filters)}}

I connect these properties to values in the URL:
users_list_filters.value = {{JSON.parse(urlparams.hash.tablefilter)}}

After the last query to populate our data (I'm merging data from multiple queries), I specify a success query that attempts to set the filters on the table:

image

This doesn't seem to work for the users_list table and its filters. Should this work?