Skip to main content
Nintex Community Menu Bar
Answer

Customizing the "Please address the following" error message

  • February 19, 2017
  • 5 replies
  • 66 views

Forum|alt.badge.img+1

Hi!

 

How can i edit the "Please address the following:" error message (received after submitting the form):

 

199610_pastedImage_1.png

 

Thanks for your help!

Daniel

Best answer by chaitra_b_c

Hi Daniel Ohana‌,

Try using below custom JQuery, where after the form load the text will be updated to display custom message:

NWF$(document).ready(function () { 

NWF$(".nf-validation-summary")[0].headertext="<<Custom text that needs to be replaced with Please address the following:>>"

});

5 replies

TomaszPoszytek
Forum|alt.badge.img+17

Daniel, can you provide a screenshot for that message?

However if this is a built-in in Nintex Forms message, I doubt if that can be customized using any OOTB tool.

Regards,

Tomasz


Forum|alt.badge.img+1
  • Author
  • February 20, 2017

I've added the screenshot with the message.

There must be a way to change the content of the message (like any other one)...


Forum|alt.badge.img+8
  • Answer
  • February 20, 2017

Hi Daniel Ohana‌,

Try using below custom JQuery, where after the form load the text will be updated to display custom message:

NWF$(document).ready(function () { 

NWF$(".nf-validation-summary")[0].headertext="<<Custom text that needs to be replaced with Please address the following:>>"

});


Forum|alt.badge.img+3
  • May 1, 2018

Thanks for the good solution Chaitra :-)


Forum|alt.badge.img+2
  • September 5, 2019
Where do I add the Jquery?