在具有CustomTreeItem的Sap.m.tree中更改图标

时间:2017-10-20 12:39:54

标签: javascript sapui5

我有一个sap.m.tree控件,我正在使用CustomTreeItem我想更改左侧的默认箭头图标,请参阅Image Attached

1 个答案:

答案 0 :(得分:0)

您可以在Init方法(视图级别或组件/应用级别)中执行以下语句,并将图标更改为您需要的任何内容。我将默认图标更改为Plus和Minus。

        sap.m.TreeItemBase.prototype.ExpandedIconURI = sap.ui.core.IconPool.getIconURI("less");
        sap.m.TreeItemBase.prototype.CollapsedIconURI = sap.ui.core.IconPool.getIconURI("add");

如果您需要更多信息,请与我们联系。