Skip to main content
Nintex Community Menu Bar
Solved

Pop up on page load for Nintex workflow Cloud form

  • March 2, 2020
  • 3 replies
  • 190 views

Forum|alt.badge.img+3

Hi There,

 

How do i get a custom pop-up/alert on page load of a nintex cloud form?

We want to display warning to the users before they fill in the form.

 

Please advice.

 

Kind Regards,

Nausheen

Best answer by butlerj

@Nausheen_H currently NWC forms do not support JavaScript or Alerting, however there is a user voice that is open for this functionality here:

https://nintex.uservoice.com/forums/430063-5-nintex-workflow-cloud/suggestions/39836854-form-alert

 

You can emulate this functionality somewhat using the Label control and hide rules. For example if I have a form that has a reminder at the top that I want to disapear once people start filling in the form I can do something like this:

 

 

 

 

Hope that helps!

 

 

 

3 replies

Forum|alt.badge.img+1

Write a JavaScript like...

 

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

alert("Hello World");

});


Forum|alt.badge.img+3
  • Author
  • Novice
  • March 2, 2020
Thanks Jayant! But I dont see any option to embed the javascript in the nintex workflow cloud.

butlerj
Nintex Employee
Forum|alt.badge.img+20
  • Nintex Employee
  • Answer
  • March 2, 2020

@Nausheen_H currently NWC forms do not support JavaScript or Alerting, however there is a user voice that is open for this functionality here:

https://nintex.uservoice.com/forums/430063-5-nintex-workflow-cloud/suggestions/39836854-form-alert

 

You can emulate this functionality somewhat using the Label control and hide rules. For example if I have a form that has a reminder at the top that I want to disapear once people start filling in the form I can do something like this:

 

 

 

 

Hope that helps!