[CLOSED] Issue with text boxes/spinner fields in IE6

  1. #1

    [CLOSED] Issue with text boxes/spinner fields in IE6

    Hi,

    I'm having some issues with the display of text boxes and spinner fields which seem to be losing the bottom border, this is just happening in IE6, I have attached a screenshot of the issues.

    In addition it is not possible to use the down arrow on the spinnerfields in IE6

    Any help appreciated.

    Thanks,

    Michelle
    Attached Thumbnails Click image for larger version. 

Name:	input-box truncated.png 
Views:	77 
Size:	35.4 KB 
ID:	4434   Click image for larger version. 

Name:	spinner.png 
Views:	90 
Size:	47.9 KB 
ID:	4435  
    Last edited by Daniil; Jul 05, 2012 at 10:37 AM. Reason: [CLOSED]
  2. #2
    Hi Michelle,

    I an unable to reproduce the both issues using the example below.

    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 v2 Example</title>
    </head>
    <body>
        <ext:ResourceManager runat="server" />
    
        <ext:TextField runat="server" />
    
        <br />
    
        <ext:SpinnerField runat="server">
            <Listeners>
                <SpinDown Handler="App.Label1.appendLine('clicked the down trigger');" />
            </Listeners>
        </ext:SpinnerField>
    
        <ext:Label ID="Label1" runat="server" />
    </body>
    </html>
    Please provide your test case.
  3. #3
    Thanks Daniil

    I have managed to fix this issue by adding a height attribute to the text box which was created server side as part of a web control which was referenced in the window.


    _textFieldName = new TextField()
                {
                    ID = "textPlanName",
                    Width = 270,
                    AllowBlank = false,
                    MaxLength = 50,
                    MinLength = 4,
                    FieldLabel = Strings.Name,
                    ValidateOnBlur = false,
                    MsgTarget = MessageTarget.Side,
                    Text = Name,
                    BlankText = Strings.YouMustInputThePlanName,
                    IsRemoteValidation = true,
                    Cls = "planDetailsText",
                    Height = 30,
                };
      this.LayoutConfig.Add(new VBoxLayoutConfig() { Align = VBoxAlign.Stretch, DefaultMargins = "10 25 10 10" });
                this.Items.Add(_textFieldName);
                this.Items.Add(_textAreaDescription);
    It also fixed the problem using the flex attribute, I think the problem was the VBoxLayout needed either a flex value or height value on the items.

    Best Regards,

    Michelle
    Last edited by Daniil; Jul 05, 2012 at 10:36 AM. Reason: Please use [CODE] tags
  4. #4
    Quote Originally Posted by musher View Post
    It also fixed the problem using the flex attribute, I think the problem was the VBoxLayout needed either a flex value or height value on the items.
    That is correct, VBoxLayout requires either Height or Flex to be set up for its items.

Similar Threads

  1. [CLOSED] JSON deserialisation issue with multicombo boxes.
    By machinableed in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 01, 2012, 10:54 AM
  2. Replies: 4
    Last Post: Feb 09, 2012, 6:06 AM
  3. Replies: 4
    Last Post: Jan 10, 2012, 5:19 PM
  4. [CLOSED] Combobox value and text fields
    By dnguyen in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Nov 19, 2010, 2:59 PM
  5. [CLOSED] Empty values from text fields
    By CSG in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Apr 21, 2009, 10:14 AM

Posting Permissions