on ‎2019 May 25 9:19 AM
I am getting the error message in the screenshot when I click for the 2nd time (after come back from the other view). Could you please help how to resolve this issue? Thanks

Here is my code:
onInit: function () {
var this_ = this;
this.getView().addEventDelegate({
onBeforeShow: function (evt) {
var oModel = new sap.ui.model.json.JSONModel();
oModel = sap.ui.getCore().getModel("appid");
var app_id = oModel.getData().app_id;
var oTable = this_.byId("capabilityList");
var oTemplate = this_.getView().byId("columnListItem").clone();
oTable.bindAggregation("items", {
path: 'zearnModel>/zearn_capabilities',
parameters: {
$filter: 'APPLICATION_ID eq ' + app_id
},
template: oTemplate,
templateShareable: true
});
}
});
},
Request clarification before answering.
| User | Count |
|---|---|
| 13 | |
| 8 | |
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.