I'm very new to Spring so pardon if this question is to vague or basic...
I'm designing a webpage where the user will be able to view a potentially long list of items. Call this the "summary" view. To help him find the item he's looking for I'll provide a set of inputs, like an date range, for example. After setting the date range, he can hit a "Filter" button, and the view list will be limited to the items within the range. When he's found the item he's looking for, he can select it via a radio button and press a "View" button the view the details of the selected item. Call this the "detailed" view.
So, I think I should use a SimpleFormController with the formView="summary" and successView="detailed". But my question is this: what is the best way to use Spring to get the view to refresh with the filtered list of items?
Any help is greatly appreciated! Thanks


Reply With Quote
