Skip to main content

Hi Nintex Community,

 

I have an issue with Nintex Forms 2013 ( 2.4.0.0 ).

 

Context : I’m designing the edit form of a published content type based on document.

 

 

In my custom content type I click on the « Edit form with Nintex Forms » link.

 

In the settings I put my javascript library url in the « Custom JavaScript Includes » and I put my custom javascript in the « Custom Javascript » :

form-settings.PNG

 

But my javascript library is loaded after my custom javascript :

form-js-error.PNG

 

 

I did this before and it worked fine!

What have I done wrong? How can I reach this?

 

Thanks.

 

 

_________________________________________________

 

PS: I tried to clear and reset my form, this doesn't change anything..

Does the following behave any differently?

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

    alert("hello world!");

} );


Thanks for your answer Andrew Glasser , of course this will work fine because you use the "Nintex jquery alias" which is already loaded, but I want to use different custom libraries (like jquery.SPServices) and it all load after my custom javascript, so it doesn't work.


Hi Canatan,

 

Can you please try to use NWF.FormFiller.Events.RegisterAfterReady.

 

Please wrap your code inside of a function literal and pass it to the NWF.FormFiller.Events.RegisterAfterReady().

e.g.

NWF.FormFiller.Events.RegisterAfterReady(function () {

.........

});

 

Let me know if any issues.

 

Thanks,

Shirin


Thank you Shirin Patel‌, it solved my issue!


Hi Shirin,

I tried the same, I am trying to get a value in the text box , but gives me

182148_pastedImage_0.png

thanks,

Sojan


Please ignore, my mistake.

It  is working.


Reply