[CLOSED] IE11 Tool Tips

  1. #1

    [CLOSED] IE11 Tool Tips

    Hi,

    I've just noticed that tool tips with the latest EXT build are being cut in half on IE 11. They're fine on 10.

    Click image for larger version. 

Name:	error.png 
Views:	49 
Size:	3.6 KB 
ID:	7384

    Any idea on a fix?

    Thanks,

    Kev
    Last edited by Baidaly; Dec 20, 2013 at 7:30 PM. Reason: [CLOSED]
  2. #2
    Hello!

    Can you check that you don't use Compatibility mode?
  3. #3
    I've added in the meta tag to force it to Edge but the tool tips are still broken.

    I've checked for compatibility mode and it doesn't seem to be on.

    Thanks.
  4. #4
    Try to add the following code to the page's head (script tags)
    <head id="Head1" runat="server">
        <title>Sample</title>
    
    
        <script>
    if (navigator.appName == 'Netscape') {
        var ua = navigator.userAgent,
            re = new RegExp("Trident/.*rv:([0-9]{1,}[\.0-9]{0,})"),
            rv;
        if (re.exec(ua) != null) {
            rv = parseFloat(RegExp.$1);
            if (rv == 11) {
                Ext.isIE = true;
                Ext.isIE10 = true;
            }
        }
    }         
        </script>
    </head>
    ExtJS 4.2.1 doesn't support IE11 because IE was released after ExtJS 4.2.1
    We need to wait next public ExtJS release with IE11 support
    Last edited by Vladimir; Dec 20, 2013 at 9:48 AM.
  5. #5
    Thanks Vladimir, this has fixed it.
  6. #6
    Quote Originally Posted by Kev View Post
    Thanks Vladimir, this has fixed it.
    Could you, please, test this page on your IE11?
    http://test.ext.net/IE11_tooltip.aspx

    The tooltip is not good for me even with the fix.
    Last edited by Daniil; Dec 25, 2013 at 1:46 PM.
  7. #7
    Here is a related thread:
    http://forums.ext.net/showthread.php?27770

Similar Threads

  1. [CLOSED] IE11 and Chrome
    By ATLAS in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Nov 13, 2013, 12:25 PM
  2. [CLOSED] Disable Line Series Tips
    By cwolcott in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 19, 2013, 4:12 PM
  3. [CLOSED] Chart: Tips Styling
    By cwolcott in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Nov 14, 2012, 4:13 PM
  4. [CLOSED] Text on Series and Tool tips for Grouped Bar Chart
    By WHISHWORKS in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 16, 2012, 10:59 AM
  5. [RAZOR] How to add tips to chart
    By Natalie in forum 2.x Help
    Replies: 0
    Last Post: May 15, 2012, 3:20 PM

Posting Permissions