[CLOSED] [1.0] How to Mask all of window - not just body

  1. #1

    [CLOSED] [1.0] How to Mask all of window - not just body

    I am trying to figure out how to mask an entire window like in a DirectEvent using a Custom Listener. Below is sample code.

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        
    </head>
    <body style="height:300">
        <form id="form1" runat="server">
        
        <ext:ResourceManager ID="ResourceManager1" runat="server" >
            <CustomListeners>
                <ext:Listener Handler="Ext.getBody().mask('Loading...', 'x-loading-mask');" Delay="1500" HtmlEvent="Click" Target="#{toplinks}" />
            </CustomListeners>
        </ext:ResourceManager>
    
        <div id="toplinks">Test Customer Listener Click
    
    
            <ext:Button runat="server" ID="btnClick" Text="Click">
                <DirectEvents>
                    <Click OnEvent="btnSearch_Click" Delay="7000">
                        <EventMask ShowMask="true" />
                    </Click>
                </DirectEvents>
            </ext:Button>
        
        </form>
    </body>
    </html>
    If I click the div the listener fires and the screen looks like the
    attached 'CustomListener_Mask' - notice that only the <body> is greyed out


    If I click btnClick the screen looks like the attached 'btnClicked_Mask'
    - everything is greyed out regardless of the <body> height



    How do I make the Custom Listener mask grey out completely like the 'btnClicked_Mask' image?

    Thanks~

  2. #2

    RE: [1.0] How to Mask all of window - not just body

    Hi,

    Please use
    Ext.net.Mask.show({msg:'Loading...'});
  3. #3

    RE: [1.0] How to Mask all of window - not just body

    Perfect - Thank You!

Similar Threads

  1. Window - set body html on client side
    By Tbaseflug in forum 1.x Help
    Replies: 0
    Last Post: Feb 01, 2012, 6:59 PM
  2. [CLOSED] Load mask on a collapsible window
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Jan 12, 2012, 11:24 AM
  3. Get Window Body Content?
    By Tbaseflug in forum 1.x Help
    Replies: 2
    Last Post: Mar 26, 2010, 1:18 PM
  4. window mask scrolls body to top
    By [WP]joju in forum 1.x Help
    Replies: 0
    Last Post: Nov 18, 2009, 2:00 AM
  5. load mask for body
    By [WP]joju in forum 1.x Help
    Replies: 7
    Last Post: Mar 16, 2009, 4:29 AM

Posting Permissions