nintex forms javascript button submit issue

  • 15 November 2018
  • 1 reply
  • 35 views

Hi I have a java script button that when clicked does some validation and clicks another save button which submits the form. however the js submit code doesn't do anything. it just says loading and gets stuck there.

 

my code is i added a css class to the save button and called it in Jscript like below

 

NWF$(".abcd").click();


1 reply

Userlevel 4
Badge +9

Tested and approved :

Be aware that the button is in fact a link (anchor) inside some div, so you have to click on the correct component.
In your JavaScript button, in the client click, just type :

NWF$(".abcd input").click();

Reply