Reputation: 1024
I'm using Telerik asp.net mvc extensions. In my application in most cases I'm using the following flow:
The problem is that when the user chose some filter in 1. then this filter is lost in 3. Additionally it is kind of annoying when the user chooses from the menu action to show grid and the last used filter is not applied.
Grid filters are stored in URL (GET method).
Such as:
http://localhost/IncomingRequest?IncomingRequestGrid-page=1&IncomingRequestGrid-orderBy=IncomingDate-desc&IncomingRequestGrid-groupBy=~&IncomingRequestGrid-filter=IncomingDate~gt~datetime'2011-10-20T08-10-11'~and~CartNumber~endswith~'xx'
What I would want is to remember filter state between requests. Is this doable?
Upvotes: 0
Views: 1611
Reputation: 8199
Please have a look at this thread. you can persist filter sorting and paging. The solution is for ajax binding for server binding you may follow this post
Upvotes: 1