Skip to main content

This post intends to show printing correctly filled out Nintex forms without validation error summary messages and highlighted fields. Nintex form validation warnings were still visible when I printed the successfully validated form that pictured below.

 

 

I have added the lines of JQuery codes that before the window.print() call listed below.

 

       NWF$('.nf-validation-summary').css('display','none');
       NWF$('.nf-error-highlight').removeClass('nf-error-highlight');

 

Finally, I have printed the correctly submitted form without any validation warning on the printout that shown below.

 

Be the first to reply!

Reply