-1
A
回答
0
是如下,我們可以訪問表列,然後設置屬性。
var tab= this.getView().byId("idProductsTable");
col=tab.getColumns()[5];
tab.getColumns()[5].setProperty("visible",false);
0
var oTable = new sap.ui.table.Table();
var oProduct=new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Product"}),
template: new sap.ui.commons.TextView({
text:"TExt"
})
});
var oPrice=new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Price"}),
template: new sap.ui.commons.TextView({
text:"price"
})
});
oTable.addColumn(oProduct);
oTable.addColumn(oPrice);
//Button
var oButton = new sap.ui.commons.Button({text:"Button",
press:function(){
oPrice.setVisible(false);
}
});
這必將有助於
相關問題
- 1. SAP HANA XS和SAP UI 5成員和角色提供者
- 2. SAP端口列表
- 3. 在縮放更改時觸發事件SAP UI 5
- 4. 如何在SAP UI選擇所有的輸入型5
- 5. 在SAP UI中使用名稱加載模型5
- 6. 使用「/resources/sap-ui-core.js」?
- 7. 資源/ sap-ui-cachebuster/sap-ui-core.js適用於混合應用程序?
- 8. SAP FIORI媒體列表,從SMP
- 9. SAP UI OData創建不工作
- 10. SAP UI5的自動UI測試
- 11. 如何從SAP UI中的表中獲取數據?
- 12. 排列5(或6)列表
- 13. 使用SAP java連接器調用的SAP功能模塊列表是什麼?
- 14. 在SAP UI5中的量表/
- 15. sap-ui-core.js加載資源失敗:服務器響應狀態爲404(未找到)send @ sap-ui-core.js:12
- 16. jQuery UI將列表顯示爲列表
- 17. SAP BODS動態添加列
- 18. SAP HANA列名排序
- 19. SAP內核版本的SAP
- 20. 列表定位在itextsharp 5
- 21. builtins.ValueError:'5'不在列表中
- 22. UI滾動像iPhone HTML 5
- 23. iPhone 5 UI屏幕問題
- 24. Rails 5保護Sidekiq UI
- 25. SAP表的授權組
- 26. SAP儀表板安裝
- 27. SAP abap循環插入表
- 28. SAP UI5中的樣式表
- 29. SAP HANA中的行表
- 30. 查找SAP關係表
單擊按鈕將列可見性設置爲false。 – Saddamhussain 2014-09-11 12:50:52
顯示你已經嘗試過的代碼。 – qmacro 2014-09-11 15:15:42