[OPEN] [#361] Resizer fails when TextArea's Margin property is set.

  1. #1

    [OPEN] [#361] Resizer fails when TextArea's Margin property is set.

    As shown on the following image, the resizer location fails when TextArea Margin property is set

    Click image for larger version. 

Name:	ERR0001.png 
Views:	14 
Size:	974 Bytes 
ID:	7100
    <ext:ResourceManager ID="ResourceManager1" runat="server" />
    <ext:TextArea ID="TextArea1" Width="300" Margin="10" runat="server">
        <ResizableConfig ID="ResizableConfig1" Handles="South" runat="server" />
    </ext:TextArea>
    Any ideas to overcome this issue?
    Last edited by Daniil; Oct 24, 2013 at 3:48 AM. Reason: [OPEN] [#361]
  2. #2
    Hello, Raphael!

    Reported to Sencha: http://www.sencha.com/forum/showthread.php?274527

    Right now, I can suggest something like this:

    <%@ Page Language="C#" %>   
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
     
    <!DOCTYPE html>
     
    <html>
    <head id="Head1" runat="server">
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server" SourceFormatting="True" ScriptMode="Debug" />
            <ext:Container runat="server" Margin="10">
                <Items>
                    <ext:TextArea ID="TextArea1" Width="300" runat="server">
                        <ResizableConfig ID="ResizableConfig1" Handles="South" runat="server" />
                    </ext:TextArea>
                </Items>
            </ext:Container>
        </form>
    </body>
    </html>
  3. #3
    We have created an issue to track this defect: https://github.com/extnet/Ext.NET/issues/361
  4. #4
    Thank you Baidaly. Please keep me posted about any update regarding this issue.
  5. #5
    Sencha has opened a bug. Hope will be fixed soon.

Similar Threads

  1. Replies: 6
    Last Post: Jan 21, 2015, 4:28 PM
  2. Replies: 11
    Last Post: Nov 06, 2012, 4:07 PM
  3. [1.0] Viewport margin property
    By SouthDeveloper in forum 1.x Help
    Replies: 1
    Last Post: May 12, 2010, 12:17 PM
  4. Code behind setting Title property on portlet fails
    By netwearcdz in forum 1.x Help
    Replies: 3
    Last Post: Jan 15, 2010, 3:36 PM
  5. Replies: 4
    Last Post: Aug 10, 2009, 5:23 AM

Posting Permissions