I have a New form in the Nintex form Web part on a publishing page in SP 2013. As the page loads, it seems the Nintex web part makes the page jump straight to the form applying the cursor in the first field of the form. The users need to see the entire content of the page and not jump straight to the form. The form is located at the bottom of all the content on this page. How can I prevent the page jumping to the Nintex form?
Hi Crystal,
My solution looks like a hack but... you're able to override the function which set the first focus before it process (only for this specific form).
To do this, go to the "Custom JavaScript" section of the form settings and add the following code :
NWF.FormFiller.Events.RegisterBeforeReady(function ()
{
NWF.FormFiller.Functions.SetFirstFocusableFillerControl = function(){};
});
Hope Nintex developers won't blame me