cancel
Showing results for 
Search instead for 
Did you mean: 

SAPUI5 Application not working in IE, works fine in chrome.

former_member670493
Discoverer
0 Kudos
469

As per the project requirement,application needs to also run in IE.

please check out the error attached .Thanks in advance.

error.jpg

View Entire Topic
former_member88235
Participant

A typical reason why an application is not working in IE is because one uses too new Javascript features. Often the IE even doesn't tell you anything about it. Sometimes you'll find a hint like syntax error in the console, sometimes you'll find nothing.

So you have different options here:

  1. Transpile your code during the build process. The Usage of the ui5 tooling and a custom transpile task like ui5-task-transpile can help here.
  2. You strictly avoid any modern Javascript features. A good source is the MDN.

Best regards,
Christian