메뉴 건너뛰기

SAP 한국 커뮤니티

Ch23. 13번 Base Controller 설정

감자깡 2025.09.22 16:46 조회 수 : 2

sap.ui.define([

    "sap/ui/core/mvc/Controller"

],

function (Controller) {

    "use strict";

 

    return Controller.extend("ea.zcertemp.controller.BaseController", {

        onInit: function () {

 

        },

 

        itemGetPath : function(oEvent, name){

            return oEvent.getSource().getBindingContext().getProperty(name);

        }

    });

});