onCreateDialog: function () {
if (!this.oMPDialog) {
this.oMPDialog = new sap.ui.core.mvc.XMLView({
viewName: "ea.zcertemp.view.CreateView"
});
this.getView().addDependent(this.oMPDialog);
this.oMPDialog.loaded().then(function () {
this.oMPDialog.byId("popupDialog").open();
const oSmartForm = this.oMPDialog.byId("smartForm");
oSmartForm.unbindElement();
oSmartForm.bindElement(this.getView().getModel().createEntry("ZCERTINFOSet").getPath());
}.bind(this));
} else {
this.oMPDialog.byId("popupDialog").open();
const oSmartForm = this.oMPDialog.byId("smartForm");
oSmartForm.unbindElement();
oSmartForm.bindElement(this.getView().getModel().createEntry("ZCERTINFOSet").getPath());
}
},