jQuery-Validation-Engine wrong position popup on field hidden (jquery tabs) -
i use jquery-validation-engine validate form, i've problem .... i've form in div divided tabs , set validationengine this:
$(".test").validationengine({validatenonvisiblefields: true});
on submit works fine both on fields in active tab in non-active .... popup error of fields in non-active tab not aligned corresponding field.
the _calculateposition function seems ignore real coordinates of field-hidden check...
any suggestion?
thanks much
i have solved same problem using validationengine updatepromptsposition method each tab... this:
$(".tabs-1").click(function(){ $form.find('form').validationengine('updatepromptsposition'); });
Comments
Post a Comment