[FIXED] [2.2] StartupMask problems

  1. #1

    [FIXED] [2.2] StartupMask problems

    Hi,
    i have a ResourceManager in my home page. Today, I have included a StartupMask in ResourceManager. After that, the first of Direct Event call shows me a error:

    Server Error in '/' Application.

    HTTP Error 400 - Bad Request.

    Version Information: ASP.NET Development Server 10.0.0.0

    The code:

    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!X.IsAjaxRequest)
            {
    
            }
        }
    
        protected void Event_Click(object sender, DirectEventArgs e)
        {
            
        }
    </script>
    <!DOCTYPE html>
    <html>
    <head id="Head1" runat="server">
        <title>Ext.NET v2 Bug</title>
    </head>
    <body>
        <ext:ResourceManager ID="ResourceManager1" runat="server">
            <StartupMask Message="Loading modules..." />
        </ext:ResourceManager>
        <ext:Button runat="server" Text="Test" OnDirectClick="Event_Click"></ext:Button>
    </body>
    </html>
    Thank you
    Last edited by Daniil; Jan 18, 2013 at 5:24 AM. Reason: [FIXED] [2.2]
  2. #2
    Thanks for the report, fix will be available in the next release
    At this moment I can suggest the following workaround
    protected void Page_Load(object sender, EventArgs e)
        {
            if (X.IsAjaxRequest)
            {
                 ResourceManager1.StartupMask = null;
            }
        }
  3. #3
    Quote Originally Posted by Vladimir View Post
    Thanks for the report, fix will be available in the next release
    At this moment I can suggest the following workaround
    protected void Page_Load(object sender, EventArgs e)
        {
            if (X.IsAjaxRequest)
            {
                 ResourceManager1.StartupMask = null;
            }
        }
    thank you Vladimir, worked fine!

Similar Threads

  1. About Ext.NET 2.0.0-rc1 Some of the problems
    By happy61 in forum 2.x Help
    Replies: 2
    Last Post: Jul 15, 2012, 4:06 PM
  2. There are some problems
    By jiaxiang8756 in forum 2.x Help
    Replies: 0
    Last Post: Jun 19, 2012, 10:04 AM
  3. GUI problems on IE 7.0 & IE 8.0
    By ITECH-Developer in forum 1.x Help
    Replies: 5
    Last Post: Sep 15, 2011, 4:12 PM
  4. Problems with IE7/8 and FireFox
    By magisystem in forum 1.x Help
    Replies: 5
    Last Post: Jun 16, 2010, 10:29 AM
  5. two problems!
    By jarremw in forum 1.x Help
    Replies: 0
    Last Post: Jun 29, 2009, 4:37 PM

Posting Permissions