Skip to main content
Nintex Community Menu Bar
Answer

JS not working in mobile view in classic designer form

  • July 5, 2022
  • 2 replies
  • 42 views

Forum|alt.badge.img+6

In a classic designer form and a SmartPhone view, it seems that my Javascript doesn't work.

As the same peace of code is working in the Desktop view, I assume that this is some sort of limitation in mobile views?

My Javascript file resists in the site assets library and is referenced in the Custom JavaScript Includes in the form settings.

I call my code like so:

NWF.FormFiller.Events.RegisterAfterReady(function() { try { getAdditions(); } catch(e) { console.log(e); } });

I am fetching data from a list within the same site with the RequestExecutor:

var executor = new SP.RequestExecutor(appweburl);

 

If users are accessing the form with a mobile phone, they get following message:

24240iC5F6972EE7525586.png

It seems like the SP.RequestExecutor.js will not be loaded in mobile views?

Can anybody bringt some light into this? - Thanks

Best answer by rhia

JavaScript does not work on Nintex Mobile. 

2 replies

rhia
Forum|alt.badge.img+15
  • Novice
  • Answer
  • July 5, 2022

JavaScript does not work on Nintex Mobile. 


Forum|alt.badge.img+6
  • Author
  • July 6, 2022

Too sad.

I am writing a SPFX-Solution now.

Thanks