Hi
I am able to pre-validate required fields when using the custom pagination code by calling a function as follows:
function IsValid()
{
var valid = true;
$('.section1,.section2,.section3,.section4').show();
$('.navbar').hide();
$('.navitem').hide();
$('#form1 input, #form1 textarea, #form1 select').filter(':visible').each(function() {
if(!$(this)[0].checkValidity()) { valid = false; }
});
return valid;
}
However, unable to make this (or similar approaches) work when using the out of the box pagination available in Forms 10.2.
Can anyone share how this can be achieved?
Many thanks,