Skip to main content
Nintex Community Menu Bar

Print forms without validation error messages and highlighted fields

  • October 25, 2017
  • 0 replies
  • 1 view

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.

 

0 replies

Be the first to reply!