What would be the recommended option from the following?
A MVC form contains a number of grids some with checkboxes and some with the standard input elements. All of these form components should be validated together and submitted back to the server in one go.
Would templates for the grids be possible and best? With templates I can specify the input element names such that collections are populated automatically by the MVC binder for my action method parameter object e.g. <input name="myobjectscollection" type="checkbox"/>
Or would converting the entire form to json and sending that be the best way to go?
I suspect there is not much difference if both are possible but I want to check if I've missed something.