Hello Experts,
When the page is loaded, few data is unable to load in IE11 browser but it is working in other browsers. Please find the details below.
Controller which is calling to load data |
---|
loadusers: function() { var thisView = this.getView();
var selectedDetails = this.getView().selectedDetails;
sap.ui.getCore().byId("idTbl_RVAUT").setBusyIndicatorDelay(0).setBusy(true);
var params = ["$select=ID,ER_MXMEMBER_MX_PERSON", "$expand=ER_MXMEMBER_MX_PERSON"]; IDMRESTLoader.getRESTDataWithAttributes(IDMRESTLoader.Tasks.TSK_GET_ROLE, selectedDetails, params, function (oModel) { var oData = oModel.getData();
thisView.getModel().setData(oData, true); sap.ui.getCore().byId("idTbl_RVAUT").setBusy(false); } ); } |
We are using the sapui5-resources1_14_3
Error |
---|
SCRIPT5: Invalid procedure call or argument File: sap-ui-core.js, Line: 147, Column: 49035
below is the 147 line in the .js file
d.prototype.updateProperty=function(n){var o=this.mBindingInfos[n],a=o.binding,p=this.getMetadata().getJSONKeys()[n];if(o.skipPropertyUpdate)return;try{var v=a.getExternalValue();o.skipModelUpdate=true;this[p._sMutator](v);o.skipModelUpdate=false}catch(e){o.skipModelUpdate=false;if(e instanceof sap.ui.model.FormatException){this.fireFormatError({element:this,property:n,type:a.getType(),newValue:a.getValue(),oldValue:this.getProperty(n),exception:e},false,true)}else{throw e}}} |
The same code is working IE10 browser and other browsers, but not in IE 11. and the HTML page is made compatible for all the IE browsers by using X-UA compatible Tag of EDGE value.
Regards,
DP