[FIXED] [#311] [2.x] Text Area "Rows" attribute not working correctly in IE7

  1. #1

    [FIXED] [#311] [2.x] Text Area "Rows" attribute not working correctly in IE7

    Hi. Run the code below in IE 7 (Compat View). I'm using the latest pull from the repository. Note that I have Rows="10" in the text area below. The field only shows 1 Row.

    <html>
    <head id="Head1" runat="server">
        <title>Test Page </title>
        <style type="text/css">
            
        </style>
    </head>
    <body>
        <script type="text/javascript">
    
        </script>
        <form id="Form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" ScriptMode="Debug" Theme="Gray"
            DisableViewState="true" />
        <ext:Panel ID="Panel1" runat="server" Title="Links" Width="300" Margin="10" BodyPadding="10"
            Cls="links">
            <LayoutConfig>
                <ext:AnchorLayoutConfig></ext:AnchorLayoutConfig>
            </LayoutConfig>
            <Items>
                <ext:TextArea runat="server" AnchorHorizontal="100%" Rows="10">
                </ext:TextArea>
            </Items>
        </ext:Panel>
        </form>
    </body>
    </html>
    Last edited by fabricio.murta; Apr 27, 2016 at 1:13 AM.
  2. #2
    Hello!

    Any IE compatibility modes are not officially supported.

    However, I tested in IE7 and it works fine.

    Is this issue reproducible without compatibility mode?
  3. #3
    Hello,

    it's not reproducible in Compatibility mode. i overrided one of the css to fix the problem:

    .x-strict .x-ie7 .x-form-text {
      height: auto !important; /* it was 18px before */
    }
  4. #4
    Could you, please, clarify it is reproducible in any original IE version without Compatibility mode?
  5. #5
    it is not reproducible in any other IE version.
  6. #6
    Quote Originally Posted by stratadev View Post
    Hello,

    it's not reproducible in Compatibility mode.
    Quote Originally Posted by Daniil
    Could you, please, clarify it is reproducible in any original IE version without Compatibility mode?
    Sorry, I guess @Daniil meant, is it reproducible with any IE version without Compatibility mode? Or only in Compatibility mode?
  7. #7
    it is reproducible in IE7.
  8. #8
    Thank you for clarifications. I could reproduce it with IE7 in BrowserStack. We are investigating.

    Temporary, I'd suggest to use your overriding.
    Last edited by Baidaly; Aug 01, 2013 at 11:27 PM.
  9. #9
    Reproduced as well and reported to Sencha with the details.
    http://www.sencha.com/forum/showthread.php?269162

    Yes, forcing "height: auto;" looks the only solution for now.

    Created an Issue to track it.
    https://github.com/extnet/Ext.NET/issues/311
  10. #10
    Hello!

    Sencha claims this issue as fixed for some time. Additionally, seems that nowadays IE7 is no longer supported by Sencha ExtJS (consequently by Ext.NET).
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. [CLOSED] Store attribute "isUpload" from 1.x to 2.x
    By sisa in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 08, 2013, 3:32 PM
  2. Replies: 1
    Last Post: Jun 26, 2012, 11:29 AM
  3. Replies: 5
    Last Post: Jun 18, 2012, 8:47 PM
  4. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  5. Replies: 2
    Last Post: Feb 27, 2011, 3:33 PM

Tags for this Thread

Posting Permissions