0
我有一個sap.m.tree控件,並且正在使用CustomTreeItem我想更改左側的默認箭頭圖標請參閱Image Attached。在具有CustomTreeItem的Sap.m.tree中更改圖標
我有一個sap.m.tree控件,並且正在使用CustomTreeItem我想更改左側的默認箭頭圖標請參閱Image Attached。在具有CustomTreeItem的Sap.m.tree中更改圖標
您可以在Init Method(視圖級別或組件/應用程序級別)中執行以下語句,並將圖標更改爲您所需的任何內容。我將默認圖標更改爲Plus和Minus。
sap.m.TreeItemBase.prototype.ExpandedIconURI = sap.ui.core.IconPool.getIconURI("less");
sap.m.TreeItemBase.prototype.CollapsedIconURI = sap.ui.core.IconPool.getIconURI("add");
讓我知道你是否需要更多信息。
您是否確實想要更改打開和關閉樹節點的標準圖標,或者是否想要將圖標添加到現有條目中,如下所示:https://sapui5.netweaver.ondemand.com/#/sample /sap.m.sample.TreeIcon/preview 我認爲你只能通過實現一些自定義CSS來更改標準圖標,但請注意,這可能會對佈局的響應性產生負面影響。 – luuksen
在此[鏈接](https://archive.sap.com/discussions/thread/3684608)中,通過擴展面板完成 –