I have figured out that I can set the filters and the limit of a list view using the query portion of the url:
?filter.field=value&limit=20
How can I/is it possible to set the order field/direction in the same way?
I have tried
?list.ordering=field&list.direction
But that does not work.
Also, when I set the limit via the url - it changes to the pagination across my entire component. I would like to be able to provide a link where limit=0 to display all the records when accessing the view via that link, but leave the global limit set to what the user has set in pagination footer.
Thanks for the help.