[CLOSED] Odd Sizing of TextField

  1. #1

    [CLOSED] Odd Sizing of TextField

    Please review the code below. On IE 11, it renders fine. on chrome, it does not. (see attachments)
    Ext 3.2.1
    Chrome Version 56.0.2924.87
    Thanks,
    /Z

    <%@ Page Language="C#" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head id="Head1" runat="server">
        <title>GridPanel Row with ToolTip - Ext.NET Examples</title>
        <link href="/resources/css/examples.css" rel="stylesheet" />    
    
    
            <style type="text/css">
            .red-text {
                color     : red;
                font-size : large;
            }
        </style>
    
    
        <script>
            var runMe = function () {
                App.testtest3.show();
            };
        </script>
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server">
                <Listeners>
                    <DocumentReady Handler="runMe()" />
                </Listeners>
            </ext:ResourceManager>
    
    
    
    
        <ext:Window 
            ID="testtest3" 
            runat="server" 
            Icon="ApplicationFormAdd" 
            Width="650" 
            AutoHeight="true"
            Hidden="true" 
            Modal="true"
            Title="Add Company"
            Constrain="true">
            <Items>
                <ext:TabPanel 
                    ID="sdfsdf" 
                    runat="server" 
                    AutoHeight="true"
                    ActiveTabIndex="0">
                    <Items>
                        <ext:FormPanel
                            ID="FormPanelAddTest" 
                            runat="server" 
                            Layout="form"
                            BodyPadding="5"
                            AutoHeight="true"
                            Title="Details">
                            <Items>
                                <ext:ComboBox ID="dfdgdfgfdgfdg" 
                                            runat="server" 
                                            Shadow="false"
                                            IndicatorText="*" 
                                            IndicatorCls="red-text" 
                                            DisplayField="description" 
                                            QueryMode="Local"
                                            AllowBlank="false"
                                            Width="300"
                                            FieldLabel="Default"
                                            TypeAhead="false"
                                            ValueField="id" 
                                            Editable="false" >
                                    <Store>
                                        <ext:Store ID="StoreLocationTimezone" runat="server">
                                            <Proxy>
                                                <ext:AjaxProxy Url="/ta/Search/GetTimezones/">
                                                    <Reader>
                                                        <ext:JsonReader IDProperty="id" RootProperty="data"/>
                                                    </Reader>
                                                </ext:AjaxProxy>
                                            </Proxy>
                                            <Model>
                                                <ext:Model ID="Model1" IDProperty="id"  runat="server">
                                                    <Fields>
                                                        <ext:ModelField Name="id" />
                                                        <ext:ModelField Name="description" />
                                                    </Fields>
                                                </ext:Model>
                                            </Model>
                                        </ext:Store>
                                    </Store>
                                    <ListConfig Width="400" />
                                </ext:ComboBox>
                                <ext:TextField ID="uniqueName"
                                    runat="server"
                                    FieldLabel="Unique"
                                    IndicatorText="*" 
                                    IndicatorCls="red-text" 
                                    AllowBlank="false"
                                    MaxLength="80"
                                    Note="https://test.test.com">
                                </ext:TextField>
    
    
                            </Items>
                        </ext:FormPanel>
                    </Items>
                </ext:TabPanel>
            </Items> 
        </ext:Window>
        </form>
    </body>
    </html>
    Attached Thumbnails Click image for larger version. 

Name:	chrome.png 
Views:	61 
Size:	6.5 KB 
ID:	24875   Click image for larger version. 

Name:	ie.png 
Views:	62 
Size:	4.9 KB 
ID:	24876  
    Last edited by fabricio.murta; Mar 24, 2017 at 3:54 PM. Reason: No user feedback in 7+ days
  2. #2
    Hello @Z!

    Please refer to this thread: Bug when displaying Field 3.x and 4.x. Let us know if that's not the case, please.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
  3. #3
    Hello @Z!

    It's been some time since we last replied to your inquiry here and still no feedback. Was the issue really related to the pointed forum thread above?

    We may mark this thread as closed if you don't provide us a feedback in 7+ days from now, but that will not prevent you from posting a follow-up if you have anything else to add here.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Grid row not sizing correctly on add
    By jbarbeau in forum 2.x Help
    Replies: 3
    Last Post: Aug 21, 2014, 6:53 PM
  2. [CLOSED] TableLayout - AbstractComponent - Sizing
    By macinator in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jun 13, 2013, 10:48 AM
  3. TableLayout - AbstractComponent - Sizing
    By macinator in forum 2.x Help
    Replies: 0
    Last Post: Jun 12, 2013, 9:11 AM
  4. [CLOSED] Panel not sizing itself correctly
    By jmcantrell in forum 1.x Legacy Premium Help
    Replies: 11
    Last Post: Aug 11, 2010, 6:35 PM
  5. Replies: 8
    Last Post: Oct 30, 2008, 11:26 AM

Posting Permissions