my form is a table and input fields are in rows and several columns. I am trying to place error messages with the jquery validate plugin in the cell (same column, next row) which is located right beneath the field which produced the error.

HTML would be something like that:

<form id="add_this">
<table>
<tr>
  <td><input id="one">bla</input></td>
  <td><input id="two">bla</input></td>
  <td><input id="three">bla</input></td>
</tr>
<tr>
  <td id="err_one"></td>
  <td id="err_two"></td>
  <td id="err_three"></td>
</tr>
<tr>
  <td><button id="frm_submit">Go</button></td>
</table>
</form>

So, for example, if the error was on input with id 'one', the corresponding error msg should appear in the cell with id 'err_one'. My validation code, which does not work, goes like this:

$('#frm_submit').click(function(){
  $('#add_this').validate({
    errorPlacement: function(error, element){
    error.appendTo(element.closest('tr').next('tr').children('td').eq(element.index()));
     }
  });
});

Thanks very much in advance

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I would have done something like (that's merely pseudocode, I can't test now):

$('#frm_submit').click(function(){
    $('#add_this').validate({
        errorPlacement: function(error, element){
            var elId = $(element).attr('id'); //should return one
            var err = $("#err_" + elId); //strings should concatenate to err_one
            error.appendTo(err)
        }
    });
})

Cheers

Grooveek

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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