[CLOSED] Exception thrown when TextBox's RightButtons is defined

  1. #1

    [CLOSED] Exception thrown when TextBox's RightButtons is defined

    On the following example, exception is thrown
    <!DOCTYPE html>
    <html>
    <head runat="server">
    </head>
    <body>
        <ext:ResourceManager ScriptMode="Debug" runat="server" />
        <ext:TextField FieldLabel="Right buttons" runat="server">
            <RightButtons>
                <ext:Button Icon="Add" runat="server" />
            </RightButtons>
        </ext:TextField>
    </body>
    </html>
    But when TextField is placed within a Window, everything works as expected:
    <!DOCTYPE html>
    <html>
    <head runat="server">
    </head>
    <body>
        <ext:ResourceManager ScriptMode="Debug" runat="server" />
        <ext:Window Width="550" Height="250" Title="Ext.Net" runat="server">
            <Items>
                <ext:TextField runat="server" FieldLabel="Right buttons">
                    <RightButtons>
                        <ext:Button  Icon="Add" runat="server" />
                    </RightButtons>
                </ext:TextField>
            </Items>
        </ext:Window>
    </body>
    </html>
    Last edited by Daniil; Aug 25, 2015 at 6:43 AM. Reason: [CLOSED]
  2. #2
    Hi @RCN,

    Thank you for the report.

    It was reported a little bit earlier.
    https://github.com/extnet/Ext.NET/issues/873

    Please confirm if works with the 3.2.1 release or with the latest from SVN trunk.
  3. #3
    Yes, it works as expected in the latest version.

Similar Threads

  1. Replies: 1
    Last Post: Aug 20, 2015, 8:16 PM
  2. Replies: 9
    Last Post: Jan 03, 2015, 8:21 PM
  3. Replies: 6
    Last Post: Aug 12, 2014, 7:24 AM
  4. Replies: 13
    Last Post: Aug 06, 2013, 3:58 AM
  5. Replies: 10
    Last Post: May 31, 2013, 12:54 PM

Posting Permissions