2 回答
TA贡献1775条经验 获得超11个赞
要么您需要扩展core: ListItemOR 您可以使用解决方法来解决您的问题,sap.m.CustomListItem并指定图标工具提示。
视图文件
<List items="{/items}">
<CustomListItem>
<HBox>
<core:Icon size="2rem" width="50px" tooltip="{tooltipInfo}" src="{icon}" />
<VBox>
<Link text="{title}"/>
<Label text="{type}"/>
</VBox>
</HBox>
</CustomListItem>
</List>
控制器.js
var oModel = new sap.ui.model.json.JSONModel();
oModel.setData({
"items": [
{ "tooltipInfo": "Group1", "icon": "sap-icon://hint", "type": "Monitor", "title": "Tiles: a modern UI design pattern for overview & navigation."},
{ "tooltipInfo": "Group2", "icon": "sap-icon://inbox", "number": "89", "title": "Approve Leave Requests", "info": "Overdue", "infoState": "Error" },
{ "tooltipInfo": "Group3", "icon": "sap-icon://email", "type": "Create", "title": "Create Leave Requests", "info": "28 Days Left", "infoState": "Success" },
{ "tooltipInfo": "Group4", "icon": "sap-icon://travel-expense-report", "number": "281", "numberUnit": "euro", "title": "Travel Reimbursement", "info": "1 day ago" },
{ "tooltipInfo": "Group5", "icon": "sap-icon://loan", "number": "2380", "numberUnit": "euro", "title": "My Salary", "info": "8 days ago" },
{ "tooltipInfo": "Group6", "icon": "sap-icon://lab", "number": "1", "numberUnit": "Invention", "title": "Test Lab Reports","info": "8 Days Ago" }]
});
this.getView().setModel(oModel);
输出
添加回答
举报