为了账号安全,请及时绑定邮箱和手机立即绑定

如何覆盖 listItem 图标工具提示?

如何覆盖 listItem 图标工具提示?

倚天杖 2021-09-30 09:47:35
我正在尝试更改核心图标的工具提示:ListItem。listItem 的工具提示属性正在更改整个项目的工具提示,这不是我要找的。<core:ListItem icon="sap-icon://message-error" tooltip="someTooltip" />
查看完整描述

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);

输出

//img1.sycdn.imooc.com//6155178a0001624805520370.jpg

查看完整回答
反对 回复 2021-09-30
  • 2 回答
  • 0 关注
  • 212 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信