[FIXED] [#1444] [4.2.1] Resizable window property doesn't work

  1. #1

    [FIXED] [#1444] [4.2.1] Resizable window property doesn't work

    Hi,
    if I set the resizable property to false directly in the window attributes, the window continues to be resizable.
    I need add CustomConfig to work fine.
    See my example.
    Jimmy

    <%@ Page Language="C#" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head runat="server">
        <title>Basic Hello World Window - Ext.NET Examples</title>
        <link href="/resources/css/examples.css" rel="stylesheet" />
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:Window
                ID="Window1"
                runat="server"
                Title="Hello World"
                Icon="Application"
                Height="185"
                Width="350"
                BodyStyle="background-color: #fff;"
                BodyPadding="5"
                Resizable="false"
                Modal="true">
                <CustomConfig>
                    <ext:ConfigItem Name="resizable" Value="false" Mode="Raw" />
                </CustomConfig>
                <Content>
                    This is my first <a target="_blank" href="http://ext.net/"> Ext.NET</a> Window.
                </Content>
            </ext:Window>
        </form>
    </body>
    </html>
  2. #2
    Hello Jimmy!

    Thanks for reporting the issue! It was really ignoring while the value was false!

    We have not only identified the source of the problem, but also fixed it in our code base, which is available from the github repository available to premium subscription users. The fix will be publicly available (and available on NuGet) next Ext.NET release Ext.NET (likely 4.2.1).

    The github issue we drawn to track this down was #1444.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 2
    Last Post: Mar 20, 2015, 12:45 PM
  2. [CLOSED] [#678] Hyperlink's Disabled property doesn't work well
    By arjunrvasisht in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 04, 2015, 3:13 PM
  3. Replies: 1
    Last Post: Dec 04, 2012, 5:44 AM
  4. Replies: 3
    Last Post: Feb 22, 2012, 12:56 PM
  5. Replies: 2
    Last Post: Mar 26, 2008, 9:41 AM

Posting Permissions