[CLOSED] FieldSet not working in Chrome

  1. #1

    [CLOSED] FieldSet not working in Chrome

    Ext.net 1.7
    IE 10
    Chrome Version 31.0.1650.63 m

    Note that the fieldset PLUS/MINUS doesn't show in Chrome.
    pls assist
    Thanks,
    /Z

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="StaticTest2.aspx.cs" Inherits="Crystal.Views.Support.StaticTest2" %>
    <%@ Import Namespace="Crystal" %>
    <%@ Import Namespace="System.Collections.Generic" %>
    <%@ 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 id="Head1" runat="server">
        <title></title>
        <style type="text/css">
            .red-text {
                color     : red;
                font-size : large;
            }
            
            .blue-text {
                color     : blue;
                font-size : large;
            }
            .x-fieldset legend input {    
                height: 14px;
            }
        </style>
    </head>
    <body>
        <ext:ResourceManager ID="ResourceManager1" runat="server"/>
     
                
                                                 <ext:FormPanel ID="f55ttt"
                                                    runat="server"
                                                    Border="false"
                                                    Padding="3"
                                                    Icon="Find"
                                                    AutoHeight="true">
                                                    <Items>
                                                        <ext:TextArea ID="test45455" runat="server" FieldLabel="5555" MaxLength="500" Width="400" />
                                                    
                                                        <ext:FieldSet ID="test444" 
                                                                    CheckboxToggle="true"
                                                                    runat="server"  
                                                                    Shadow="None"
                                                                    Collapsible="true"
                                                                    Collapsed="true"
                                                                    Layout="ContainerLayout"
                                                                    CollapseMode="Default"
                                                                    FieldLabel="test"
                                                            >
                                                            <Items>
                                                                <ext:ComboBox ID="a1" runat="server" FieldLabel="1" LabelWidth="140"  SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a2" runat="server" FieldLabel="2" LabelWidth="140"  SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a3" runat="server" FieldLabel="3" LabelWidth="140"  SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a4" runat="server" FieldLabel="4"  LabelWidth="140" SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a5" runat="server" FieldLabel="5"  LabelWidth="140" SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a6" runat="server" FieldLabel="6" LabelWidth="140"  SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                                <ext:ComboBox ID="a7" runat="server" FieldLabel="7"  LabelWidth="140" SelectedIndex="0"><Items><ext:ListItem Text="All" Value=""/><ext:ListItem Text="Yes" Value="Y"/><ext:ListItem Text="No" Value="N" /></Items></ext:ComboBox>    
                                                            </Items>
                                                        </ext:FieldSet>
                                                    </Items>
                                                </ext:FormPanel>     
        </body>
        </html>
    Last edited by Daniil; Dec 09, 2013 at 2:58 PM. Reason: [CLOSED]
  2. #2
    Hi @Z,

    Thank you for the report.

    Please try this fix:
    .ext-chrome legend.x-fieldset-header {
        height: 15px;
    }
  3. #3
    that worked. Will a permanent fix be made at some point?
    /Z
  4. #4
    Thank you for confirming.

    I have committed the fix to SVN, branches/1.

Similar Threads

  1. [1.0] Fieldset padding not working
    By igitur in forum 1.x Help
    Replies: 4
    Last Post: Jan 08, 2014, 1:24 AM
  2. Replies: 0
    Last Post: Jul 05, 2013, 10:49 AM
  3. [CLOSED] GetModifiedRecords() not working in Chrome
    By Aparna_B in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Feb 08, 2013, 11:03 AM
  4. Replies: 3
    Last Post: Aug 11, 2011, 11:07 AM
  5. Replies: 2
    Last Post: Jul 11, 2011, 8:32 PM

Posting Permissions