MenuItem in Internet Explorer

  1. #1

    MenuItem in Internet Explorer

    Hi,

    I have a following problem with my application. I created a simple menu with several MenuItems with filled Icon property. In chrome everything is ok, but in IE the icons remain invisible. Same situation with CheckBoxColumn - I can see text but no check box.
  2. #2
    Hi reiben,

    I have noticed that IE is sometimes slow to load images. This might be a combination of IE and/or the built in casini webserver which can be a real slow poke.

    Clearing the browser cache and doing a complete system re-start might free up some resources.

    Try the following sample and let me know if it works for you.

    Example

    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head runat="server">     
        <title>Ext.NET Ecxample</title>       
    </head> 
    <body>    
        <form runat="server">
            <ext:ResourceManager runat="server" />
            
            <ext:Window runat="server" Title="Example">
                <TopBar>
                    <ext:Toolbar runat="server">
                        <Items>
                            <ext:Button runat="server" Text="File" Icon="Wrench">
                                <Menu>
                                    <ext:Menu runat="server">
                                        <Items>
                                            <ext:MenuItem runat="server" Text="Save" Icon="Disk" />
                                        </Items>
                                    </ext:Menu>
                                </Menu>
                            </ext:Button>
                        </Items>
                    </ext:Toolbar>
                </TopBar>
            </ext:Window>
        </form> 
    </body> 
    </html>
    Geoffrey McGill
    Founder
  3. #3
    Unfortunately this is not the solution. Icons works fine with Chrome or Firefox, but I ca'nt see them in IE
  4. #4
    Hi,

    I tested the code that @Geoffrey posted and it appears to be working fine under IE.

Similar Threads

  1. Override F-key in Internet Explorer
    By glenh in forum 1.x Help
    Replies: 0
    Last Post: Jul 04, 2012, 9:41 PM
  2. Internet Explorer exception
    By igitur in forum 1.x Help
    Replies: 3
    Last Post: Oct 06, 2010, 2:17 PM
  3. Trouble with internet explorer
    By W.villevoye in forum 1.x Help
    Replies: 0
    Last Post: Jun 17, 2010, 9:53 AM
  4. [CLOSED] internet explorer cannot open the internet site
    By speedstepmem4 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 28, 2009, 10:30 AM
  5. Internet Explorer 8
    By Ben in forum Open Discussions
    Replies: 3
    Last Post: Feb 25, 2009, 12:38 AM

Posting Permissions