IE9 : Examples explorer doesn't work

  1. #1

    IE9 : Examples explorer doesn't work

    With IE9 just downloaded, I try to go to examples explorer, but it's impossible to click on menu item.

    Moreover, it seems viewport does not work.
  2. #2
    Hi,

    IE9 is not released yet, we support officially released browsers only
    Last edited by Vladimir; Sep 15, 2010 at 9:08 PM.
  3. #3
    I understand but nevertheless, examples on sencha.com works.
  4. #4
    Are you testing locally, or viewing https://examples1.ext.net?
    Geoffrey McGill
    Founder
  5. #5
    I'm refreshing the online build of https://examples1.ext.net. Will be live in a few minutes.

    It's been a while since the online app was updated, and now we're using ExtJS 3.3, so that might help solve the problem.
    Geoffrey McGill
    Founder
  6. #6
    The examples on https://examples1.ext.net do work on IE9, but you have to first enable compatibility mode in IE (By click on the compatibility icon before refresh icon).

    The question is why compatibility mode needs to be enabled. Anyways it?s still just a beta.
  7. #7
    Quote Originally Posted by Ekene View Post
    The examples on https://examples1.ext.net do work on IE9, but you have to first enable compatibility mode in IE (By click on the compatibility icon before refresh icon).

    The question is why compatibility mode needs to be enabled. Anyways it?s still just a beta.
    Well it will work in compatibility mode because effectively the browser will be using the "IE7 standards" Document mode. But yes it's still a Beta release.
  8. #8
  9. #9

    Use Application_BeginRequest in Global.asax to insert X-UA meta tag

    Now that IE9 is released, this is an issue. All that is required is to put the X-UA meta tag before ANYTHING else loads in the head. Should be easy right?

    Ext.Net does force itself into the head at position 0, so the only real way I have found to do this so far is to add the below to your Global.asax. This works a charm! Your application will look and behave like it did in IE8/7.

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        Response.AppendHeader("X-UA-Compatible", "IE=8");
    }
    Enjoy!
    Last edited by leeroy; Mar 19, 2011 at 8:24 AM.
  10. #10
    Hi,

    You can use ResourcePlaceholder (with Mode property) to control Ext.Net resources position

Similar Threads

  1. [CLOSED] TabBar Config examples in Examples Explorer not working
    By anup in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jun 26, 2012, 9:32 AM
  2. Replies: 2
    Last Post: May 16, 2012, 4:35 PM
  3. Replies: 7
    Last Post: Mar 22, 2012, 1:00 PM
  4. Replies: 3
    Last Post: Jun 13, 2011, 4:17 PM
  5. Examples Explorer
    By amitpareek in forum Open Discussions
    Replies: 36
    Last Post: Nov 22, 2008, 7:57 PM

Posting Permissions