Let´s say I have some sort of datagrid and I want to add a couple chained filters like in this site: http://www.yelp.com/search?find_desc=bar&ns=1&find_loc=Minneapolis%2C+MN (sort by,distance,price etc).
Each time a user clciked in a filter link it will update the content of datagrid accordingly. But I would also need to update the links in other filters to take account of the changes. Ex: if i change the order field I need to add/update ?order_field=x in all the other filters links.
What you think is the best way to implement such scenario? Should i create a function that, when a filter link is clicked, it update the query string params of all the other filters? Or use hidden fields to record the selected option in each filter?
I would like a reusable solution if possible.