I'm looking a solution to achieving what ultimately will look like nested forms. I know nested forms do not work, but I have a requirement to build a view which, from a legal standpoint, must be ordered like the example below.
The form will contain a mixture of inputs - text and checkboxes bound to the view model properties, and partial to allow document uploading. The document upload partial its self contains a form and is used elsewhere in the site and should not be amended.
I won't include all the mark-up as it's fairly standard stuff, the example below is just to outline what I want to achieve.
Can anyone suggest anything, or point me towards any examples? It may be my approach is wrong, if so please say, but just bear in mind that the layout has to resemble my example.
Thanks
<form> <input /> <input /> <partial (containing another form for uploading) /> <input /> <partial (containing another form for uploading) /> </form>