Hi , I use this code to skip all the mandatory fields in the form .

Hi ,
I use this code to skip all the mandatory fields in the form .

function skipValidationFunc(field)
{
var componentDom = window.Build.util.getComponentContainer(field,window.FormDesigner.runtimeNamespace);
var configData = window.FormDesigner.getConfigData(componentDom.get(0));
configData.required = "false";
}

In the field we pass in the field id .

Now this code doesnt work if the validation is done using custom javascript . Is there a code to skip the validation for custom javascript validatons also .

Thanks
Sanghapriya Bose...

OriginalPostID-29298

OriginalPostID-29298

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data