[CLOSED] LoadMask

  1. #1

    [CLOSED] LoadMask

    Hi all,

    In Ext.net v1.3 (JS 3.4) , each container ( formpanel, panel, gridpanel..) had a loadMask and SaveMask config.

    How can achieve the same behavior of the loadMask and SaveMask in Ext.net v2.1 .
    A sample will be very appreciated.

    Thanks in advance,
    Best Regards.
    Last edited by Daniil; Dec 29, 2012 at 1:12 PM. Reason: [CLOSED]
  2. #2
    Hi @FpNetWorth,

    Thank you for the question.

    GridPanel LoadMask

    The existing BREAKING_CHANGES item #113.
    https://examples2.ext.net/#/Getting_...AKING_CHANGES/

    113. The server GridPanel LoadMask property has been removed. Use the respective properties - LoadMask (true by default), LoadingText, etc. - of GridView.
    GridPanel SaveMask

    Added a new item.

    151. The GridPanelBase's SaveMask property has been removed.

    To show a mask, set up the following Store's BeforeSync listener.

    Ext.net.Mask.show({
             el: App.GridPanel1.body,
             msg: "Saving"
         });
    To hide a mask, set up the following Store's Write and Exception listener.

    Ext.net.Mask.hide();
    Panel, FormPanel, etc. LoadMask

    Added a new item.
    150. The PanelBase's LoadMask property has been removed.

    Configure the LoadMask property of the Loader class.

    Example

    <ext:Panel runat="server">
             <Loader runat="server" Mode="Frame" Url="http://ext.net">
                 <LoadMask ShowMask="true" />
             </Loader>
         </ext:Panel>
    Last edited by geoffrey.mcgill; Apr 30, 2013 at 12:48 PM.

Similar Threads

  1. [CLOSED] LoadMask Opacity
    By Patrick_G in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 29, 2012, 1:48 AM
  2. [CLOSED] [0.8.1] LoadMask
    By cobiscorp in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 27, 2010, 3:23 PM
  3. LoadMask
    By Krisller in forum 1.x Help
    Replies: 0
    Last Post: Jun 10, 2010, 7:35 PM
  4. help with LoadMask
    By idrissb in forum 1.x Help
    Replies: 0
    Last Post: Sep 16, 2008, 3:48 AM
  5. [CLOSED] How do you use a LoadMask?
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 09, 2008, 3:52 PM

Tags for this Thread

Posting Permissions