[CLOSED] MaskMsg="Loading Data...={#{ComboBoxPortfolios}.getText() ????

  1. #1

    [CLOSED] MaskMsg="Loading Data...={#{ComboBoxPortfolios}.getText() ????

    What is the proper syntax for dynamically setting the value of a MaskMsg?
    Last edited by geoffrey.mcgill; Sep 22, 2010 at 5:12 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Can you set the property in code-behind?
    Geoffrey McGill
    Founder
  3. #3
    No, because the panel is loading another page...there is no post-back oppourtunity..
  4. #4
    Hi,

    What version do you use?
    In Ext.Net it is easy to change the mask message
    <%@ Page Language="C#" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        
        <script runat="server">
            protected void ClickHandler(object sender, DirectEventArgs e)
            {        
            }
        </script>
    </head>
    <body>
        <form id="Form1" runat="server">
        <ext:ResourceManager runat="server" />
            <ext:Button ID="Button1" runat="server" Text="Click">
                <DirectEvents>
                    <Click OnEvent="ClickHandler" Before="o.eventMask.msg = 'New message';">
                        <EventMask ShowMask="true" Msg="Message" MinDelay="1000" />
                    </Click>
                </DirectEvents>
            </ext:Button>
        </form>
    </body>
    </html>

Similar Threads

  1. Replies: 1
    Last Post: May 22, 2012, 3:09 PM
  2. Replies: 4
    Last Post: May 22, 2012, 10:40 AM
  3. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  4. Replies: 4
    Last Post: Oct 11, 2011, 2:42 AM
  5. [CLOSED] Need to display "Loading..." when clicking on a new panel
    By garrisrd in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Aug 31, 2010, 2:33 PM

Posting Permissions