自定义UI5控件SAP UI5的默认子控件

时间:2018-05-15 10:27:03

标签: sapui5 custom-controls

如何将(文本字段+三个按钮)作为我的自定义ui5控件的默认子控件。每当我的自定义控件加载时,默认情况下它应该在我的自定义控件中呈现(文本字段+三个按钮)。

此致 Karthik S

1 个答案:

答案 0 :(得分:0)

事件中的onholdevent": {},

厌恶:

"button": {
 type: "sap.m.Button",
 multiple: false
},

内置

this.setAggregation("button", new sap.m.Button({
    text: "On Press",
    press: function() {
        that.fireOnholdevent(this);
    }
}));

渲染中oControl.getAggregation("button");

主要是this refrence,通过“ this”,您可以在Controller中单击哪个按钮。在视图中,只需输入事件名称,然后在Controller中对其进行刷新即可。