[CLOSED] Show Loading Mask with custom Text on GridPanel when calling Store.reload().

  1. #1

    [CLOSED] Show Loading Mask with custom Text on GridPanel when calling Store.reload().

    Hi,

    In Ext V2.5, how to show Loading Mask with custom message on GridPanel refresh with Store.reload() method.

    Thank you.
    Last edited by Daniil; May 13, 2014 at 4:19 PM. Reason: [CLOSED]
  2. #2
    Hi @iansriley,

    Is the Store configured with any type of remote Proxy (like PageProxy, AjaxProxy)? If so, a mask should appear automatically. You can set up a custom text:
    <ext:GridView runat="server" LoadingText="My LoadingText" />
    If no, you can apply mask manually.
    Ext.net.Mask.show({ 
        el: App.GridPanel1.view.el,
        msg: "My Mask Message"
    });
    store.reload({
        callback: function() {
            Ext.net.Mask.hide();
        }
    });

Similar Threads

  1. [CLOSED] Show loading mask while data copying
    By ndotis in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 18, 2014, 7:48 PM
  2. [CLOSED] How NOT to show the loading mask for TabPanel?
    By vadym.f in forum 2.x Legacy Premium Help
    Replies: 9
    Last Post: Aug 07, 2013, 11:44 AM
  3. [CLOSED] Mask doesn't show on GridPanel store refresh
    By vadym.f in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Jul 12, 2013, 3:44 PM
  4. Replies: 9
    Last Post: Nov 27, 2012, 11:16 PM
  5. [CLOSED] How to prevent focus loss after calling store.reload()
    By webclouder in forum 1.x Legacy Premium Help
    Replies: 10
    Last Post: Jun 20, 2011, 9:21 PM

Tags for this Thread

Posting Permissions