i've jquery ui tabs.each tabs contain different form
i use this code to validate the form
function bindAjaxValidation(idForm){
jQuery("#"+idForm).validationEngine('detach');
jQuery("#"+idForm).validationEngine('hideAll');
jQuery("#"+idForm).validationEngine({
validateNonVisibleFields: true,
updatePromptsPosition:true,
ajaxFormValidation: true,
ajaxFormValidationMethod: 'post',
onAjaxFormComplete: ajaxValidationCallback,
promptPosition : "topLeft:0"
});
}
all works fine on first tabs. when i switch to onother tabs validation start but errors are not shown.
this solution non help me
jQuery-Validation-Engine wrong position popup on field hidden (jquery tabs)
the solution is simple. id must have unique id.
from offical documentation
http://www.position-relative.net/creation/formValidator/demos/demoMultipleForms.html