I display some data in html table. Html form is around html table. I'm using unobtrusive validation.

In each row I have edit button going to EditRow(int id) action that returns html table row in edit mode. Partial view contains html table row with form fields in table columns and save cancel buttons. When edit button is clicked jquery makes the ajax call to the EditRow method and replaces current table row ( display mode ) with new table row ( edit mode ).

When save button is clicked jquery disables all form fields from all other table rows then current and submits the form to SaveRow(RowModel m) action.

I also have a Save button above the html table. This button submits all table rows that were edited. So user can edit few table rows and save each row individually or save all of edited rows all toghether.

Problem 1 EditRow(int id) action returns table row with form fields. Those fields do not have html id prefixed with any array index. How do I achieve that? Do I need to write custom model binder?

Example : if row with id 3 is edited I want the view to produce form fields prefixed with row[3]. This is to keep html ids unique. Otherwise unobtrusive validation gets confused.

Problem 1 solution

Non-Sequential Indices :

by introducing an extra hidden input, you can allow for arbitrary indices. In the example below, we provide a hidden input with the .Index suffix for each item we need to bind to the list. The name of each of these hidden inputs are the same, so as described earlier, this will give the model binder a nice collection of indices to look for when binding to the list.

Problem 2 Before table row is saved I disable all other table rows and use javascript form.valid() method to validate the form. Problem is when :

  • user tries to save table row 1 but validation fails ( error messages are displayed )
  • user tries to save table row 2. Table row 2 is valid but table row 1 is still invalid ( disabled but invalid ).

So invalid and disabled row 1 prevents valid and enabled row 2 from being saved. How do I disable validation on row 1 for submitting row 2?

Problem 2 solved

When individual row is saved validation works as follows using jquery :

$('.btnSave').live('click', function () {

 // find form
 var form = $(this).parents('form');
 // find current table row
 var tr = $(this).parents('tr');
 // disable inputs from all other rows
 form.find('tr').not(tr).find('input').attr('disabled', 'disabled');
 // validate form
 if (form.valid()) {
     // submit using ajax here
  }

 // enable all other input fields
 form.find('tr').not(tr).find('input').removeAttr('disabled');

 return false;
});

So row X can be submitted even if other rows are not validated properly as long as they are disabled.

link|improve this question

20% accept rate
feedback

closed as too localized by Robert Harvey Dec 15 '11 at 16:18

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote -1 down vote accepted

I answered my question myself by editing the body of the question.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.