메뉴 건너뛰기

SAP 한국 커뮤니티

Ch23. 06번 Create Controller 생성

감자깡 2025.09.22 17:55 조회 수 : 0

sap.ui.define([
    "ea/zcertemp/controller/BaseController"
], function (BaseController) {
    "use strict";

    return BaseController.extend("ea.zcertemp.controller.CreateView", {
        onInit: function () {
            this.oDialog = this.byId("popupDialog");
        },

    });
});