on 2020 Apr 24 9:32 AM
As per the project requirement,application needs to also run in IE.
please check out the error attached .Thanks in advance.
Request clarification before answering.
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:
Best regards,
Christian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
About the error:
> Routes with dynamic parts cannot be resolved as home route.
It comes from the sap/ui/core/routing/Router module when dynamic parts ({...}) are detected in the "pattern" of the route that is assigned to the "homeRoute". I.e. you must have something like this in the router settings:
"sap.ui5": {
...,
"routing": {
"config": {
...,
"homeRoute": "myHome"
},
"routes": {
"myHome": {
"pattern": "mypath/{something}/mysubpath",
"target": "home"
}
},
...
}
}
Solution: As the router doesn't allow any home routes with dynamic patterns, try with one the following options depending on the project...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
73 | |
21 | |
9 | |
7 | |
6 | |
6 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.