[CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

  1. #1

    [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Take a look at the 2 screenshots, first is Firefox, with fields set Enabled = False or Disabled = True it does not matter, Firefox shows fields in the TabPanel, IE7 they have disappeared!
  2. #2

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Also see how hard the Enabled = False, Disabled = True fields are to see? It would be nice if they looked more like the Fall 2009 combobox. Or at least let me override the StyleSpec to make it appear like I want it to. There is another thread open for that one...
  3. #3

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Hi jsemple,

    Can you try setting LayoutOnTabChange="true" on the TabPanel to solve the hidden ComboBox in IE.

    Let me know if that solved the problem.

    Geoffrey McGill
    Founder
  4. #4

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    did not work
  5. #5

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Hi,

    Can you post the sample which reproduces the problem?
  6. #6

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Look at the screenshot.

    Can you post an example of a TabPanel and ComboBox/DateField inside a FormLayout that works in IE 7? It works fine in Mozilla Firefox and IE 6, I dont think there is anything wrong with the code. We have many users who had IE 7 installed via automatic update.
  7. #7

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    Hi,

    <%@ Page Language="C#" %>
    <%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" 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 id="Head1" runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <ext:ScriptManager ID="ScriptManager1" runat="server" />        
            
            <ext:TabPanel runat="server" Width="400" Height="300">
                <Tabs>
                    <ext:Tab runat="server" Title="Title">
                        <Body>
                            <ext:ColumnLayout ID="ColumnLayout1" runat="server" FitHeight="true">
                                <ext:LayoutColumn ColumnWidth=".5">
                                    <ext:Panel ID="Panel1" runat="server" Border="false" Header="false">
                                        <Body>
                                            <ext:FormLayout ID="FormLayout1" runat="server" LabelAlign="Top">
                                                <ext:Anchor Horizontal="95%">
                                                    <ext:ComboBox runat="server" FieldLabel="Combo1" Disabled="true">
                                                        <Items>
                                                            <ext:ListItem Text="Item" Value="1" />
                                                        </Items>
                                                        <SelectedItem Value="1" />
                                                    </ext:ComboBox>
                                                </ext:Anchor>
                                                <ext:Anchor Horizontal="95%">
                                                    <ext:DateField runat="server" FieldLabel="DateField" Disabled="true"/>
                                                </ext:Anchor>
                                            </ext:FormLayout>
                                        </Body>
                                    </ext:Panel>
                                </ext:LayoutColumn>
                                <ext:LayoutColumn ColumnWidth=".5">
                                    <ext:Panel ID="Panel2" runat="server" Border="false" Header="false">
                                        <Body>
                                            <ext:FormLayout runat="server" LabelAlign="Top">
                                                <ext:Anchor Horizontal="95%">
                                                    <ext:ComboBox runat="server" FieldLabel="Combo1" Disabled="true">
                                                        <Items>
                                                            <ext:ListItem Text="Item" Value="1" />
                                                        </Items>
                                                        <SelectedItem Value="1" />
                                                    </ext:ComboBox>
                                                </ext:Anchor>
                                                <ext:Anchor Horizontal="95%">
                                                    <ext:DateField runat="server" FieldLabel="DateField" Disabled="true"/>
                                                </ext:Anchor>
                                            </ext:FormLayout>
                                        </Body>
                                    </ext:Panel>
                                </ext:LayoutColumn>
                            </ext:ColumnLayout>
                        </Body>
                    </ext:Tab>
                </Tabs>
            </ext:TabPanel>
        
        </form>
    </body>
    </html>
  8. #8

    RE: [CLOSED] Disabled fields (DateField and ComboBox) not showing up in IE 7.

    I had this DeferredRender="false" property in my tabpanel and it was causing it to not work in IE 7. I removed it, and now the fields show up disabled properly, however I have a couple of layout issues, so I'm going to see if I can fix them without having that property there.



    
    <ext:TabPanel ID="tabEditPane" 
    
    
    runat="server" 
    
    
    DeferredRender="false"
    
    
    ActiveTabIndex="0" 
    
    
    Plain="true"
    
    
    Border="true"
    
    
    Height="250">
    
    
    <Tabs>
    
    
    <ext:Tab ID="tabGeneral"
    
    
    runat="server" 
    
    
    AutoHeight="true"
    
    
    Title="General" 
    
    
    BodyStyle="padding:10px;">
    
    
    <Body>

Similar Threads

  1. Replies: 1
    Last Post: Sep 13, 2011, 2:22 PM
  2. Replies: 1
    Last Post: Apr 28, 2011, 12:00 PM
  3. Display problem with disabled fields
    By Stefanaccio in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 27, 2010, 6:14 PM
  4. Replies: 4
    Last Post: Feb 02, 2010, 4:08 PM

Posting Permissions