Looking for experienced opinions on how to deal with this:
We have a page that shows a table for user data input. (Table haters: It's tabular data, so...)
Each input on the page is designed to "hide" a more complex form, shown via a jQuery dialog/popup. The entire table is wrapped in a single tag, posted when the user hits the 'submit' button at the bottom of the table. The table rows are line items in the model.
The model passed to the controller method is basically
public class MyBigModel {
public List<LineItemModel> LineItems {get;set;}
...more stuff...
}
public class LineItemModel {
public List<LineItemDetail> Details {get;set;}
}
public class LineItemDetail{
public List<OtherDetails> SometimesIHaveDetailsToo {get;set;}
}
Functionally, submitting the entire .... works fine, but we're now being asked to allow people to submit individual lines, etc.
At present, to submit single line items, I'm copying (jQuery.clone()) a table row to another form, posting that, and destroying the clone.
I've considered switching entirely to a "form per row" type of approach, but not fully sure how to deal with that--can I wrap a with a tag? Should I?
Off in magic unicorn land, one might expect this sort of thing...
< form>
<table>
< form> <tr with my data and a nice submit button /> </form>
< form> < another tr with my data and another nice submit button /> </form>
</table>
<input type="submit">MyMasterSubmit</input>
</form>
(hoping that describes the issue well enough)
As I mentioned, the data held in each row is actually pretty complicated. There are a number of DIV elements associated with each line item to be included as the popups, so I'm not sure they can be in a table row by themselves without causing some markup issues. It's an LOB app designed for rapid-ish data entry, so breaking it apart isn't going to be a solution.
Any ideas as to good practices to deal with this?