I have a view which I use for several submit actions. Each action should return the same view (ie, I delete an item from a list and onSubmit gives me the same view with the same command state).
To achieve this, my onSubmit method returns showForm() as a ModelAndView to "redisplay the form". However, I want to give the user a message if an action went fine or if it didn't (ie - Error deleting an item) but I'm having trouble adding anything to the model that the showForm returns.


Reply With Quote
