這是我的代碼,它不工作。我們如何在SAPUI5中爲按鈕創建或設置動態「ID」?
var that = this;
otable.bindItems("/", new sap.m.ColumnListItem({
cells: [new sap.m.Button({
text: "Hello",
id: "buttonid",
press: [that.handleButtonPress, this]
})]
}));
otable.setModel("data");
handleButtonPress: function() {
var Button_ = this.getView().byId("buttonid");
}
如何設置動態ID?
謝謝你,也可以我使用* * id:this.createId(「ButtonId」); **在sap.m.Button中設置動態編號 –
你說得對。 this.createId將考慮視圖ID前綴。如果答案是正確的或有幫助的,你可以接受它是正確的或積極的。 – cschuff
謝謝@cschuff的反饋意見 –