I don't know if you have run into a similar situation but here's a requirement that has been given to me:-
I run an ASP.NET MVC site which manages our client company details. Due to usability concerns, we have been asked to remove some checkboxes and replace them with a generic "Apply" button on our Edit page.
The current scenario that we have on our Edit page is:
- Checkbox for "Enable Speed Settings for all Assets"
- Checkbox for "Enable Corrective Actions for all Assets"
- At the click of the Save button, a trigger updates the database.
What is currently required now, is one button to do both operations. This obviously needs a new NHibernate stored procedure but that's an issue for later. Therefore, what I'm interested is, can a button of this sort be achieved in MVC? If so, has anyone had any experience which would help, specifically in constructing the ActionResult methods? Thank you. :)