Search code examples
javascriptgoogle-chromecross-browsermicrosoft-edgedevextreme

DevExtreme dxGrid's tooltip not behaving consistent in Microsoft Edge browser


I've got a dxGrid which renders like this in Chrome:

dxGrid with tooltip on Chrome

The same grid when seen in Edge doesn't shows tooltips:

dxGrid without tooltip on Edge

Is this a bug? If yes, is there a way I can forcefully show a tooltip on Edge?


Solution

  • There is no bug. It works fine. If you're really interested in forcefully showing a kind of tooltip, use cellTemplate

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