我应该扩展哪个fiori app来定制sap智能商务KPI磁贴?

时间:2017-11-07 09:46:02

标签: sapui5

我们必须处理当光标悬停在KPI平铺上时触发的事件。那么请你帮我找到我必须扩展的应用程序。

您发现附加了使用 kpi工作区

生成的kpi屏幕截图

enter image description here

非常感谢,

EH

1 个答案:

答案 0 :(得分:1)

您可以通过扩展sap.m.GenericTile:

来实现
 sap.ui.define(function () {
    "use strict";
    return sap.m.GenericTile.extend("sample.ExtendedTile", { 
            metadata: {
                events: {
                    "onmouseover" : {}  
                }
            },

//          the hover event handler, it is called when the GenericTile is hovered - no event registration required
            onmouseover : function() {}, 
});