IE10 on windows 8

3
Does Mendix support IE10 on windows 8? Our customer uses the new browser and only see the header of the mendix app. The login form is not visible. Edit after applying patch: The patch doesn't work for me. We've modified our index.html, but the client is never loaded completely in IE10. We only see that the loader.gif is busy all the time. Edit after filing a bug report Mendix version 3.3.5 applies a fix for the IE10 issues <script type="text/javascript" src="mxclientsystem/dojo/dojo.js" djConfig=" usePlainJson: true, rtlRedirect: 'index-rtl.html' "> </script> <!-- Approach IE10+ as IE9. NOTE: as of Mendix 4.4.0 IE10 is supported, so remove after migrating to 4.4.0+. --> <script> if (dojo.isIE && dojo.isIE >= 10) dojo.isIE = 9; </script> <link type="text/css" rel="stylesheet" href="mxclientsystem/mxui/ui/mxui.css" media="screen"/>
asked
1 answers
4

Newer versions do support IE 10 out of the box. Olders versions can be made compatible by adjusting your index.html file by inserting the following code after the inclusion of dojo.js/ mendix.js. Note that this patch should be removed when upgrading to a IE 10 supporting version!:

    <script>
        if (dojo.isIE && dojo.isIE >= 10)
            dojo.isIE = 9;
    </script>
answered