DevExtreme dxGrid的工具提示在Microsoft Edge浏览器中的行为不一致

时间:2016-08-29 10:10:01

标签: javascript google-chrome cross-browser microsoft-edge devextreme

我有一个dxGrid,在Chrome中呈现如下:

dxGrid with tooltip on Chrome

Edge中显示的同一网格未显示工具提示:

dxGrid without tooltip on Edge

这是一个错误吗?如果是,有没有办法在Edge上强制显示工具提示?

1 个答案:

答案 0 :(得分:0)

没有错误。它工作正常。如果您真的有兴趣展示一种工具提示,请使用cellTemplate

cellTemplate: function(container, options) {
            container.attr("title", "Your tooltip data goes here");
          }