메뉴 건너뛰기

SAP 한국 커뮤니티

Ch23. 09번 Create 버튼 클릭 시

감자깡 2025.09.22 18:05 조회 수 : 0

        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());

            }

        },