[CLOSED] disable the loading mask on ajax proxy store load

  1. #1

    [CLOSED] disable the loading mask on ajax proxy store load

    Hi, How can the loading mask that appears when the store loads be disabled.

    
    <Store>
                                        <ext:Store runat="server" GroupField="GroupName" RemoteSort="true" AutoLoad="true" Buffered="false" RemotePaging="true" PageSize="100"
                                              >
                                            <Model>
                                                <ext:Model runat="server">
                                                    <Fields>
                                                        
                                                        <ext:ModelField Name="DateRecieved" Type="Date" />
                                                        <ext:ModelField Name="GroupName" />
                                                        <ext:ModelField Name="From" />                                                   
                                                      
                                                    </Fields>
                                                </ext:Model>
                                            </Model>
                                            <Proxy>
                                                <ext:AjaxProxy Url="my_url" DirectionParam="SortDirection" FilterParam="Filter" LimitParam="PageSize"
                                                                    GroupParam="Group" PageParam="PageIndex" SortParam="Sort" StartParam="Start" >                                            
                                                    <Reader>
                                                        <ext:JsonReader Root="data"  />
                                                    </Reader>
                                                </ext:AjaxProxy>
                                            </Proxy>
                                            <Listeners>
                                                
                                            </Listeners>
                                        </ext:Store>
    Last edited by Daniil; Jan 24, 2013 at 4:45 AM. Reason: [CLOSED]
  2. #2
    Hi @RCM,

    Please set up:
    <ext:GridPanel runat="server">
        <View>
            <ext:GridView runat="server" LoadMask="false" />
        </View>
    </ext:GridPanel>
  3. #3
    How to do same thing but with ComboBox?

    I have Listener

    <BeforeQuery Handler="#{StoreCombo}.reload();" />
    and every time it flashes loading mask, it looks distracting when mask flash so fast. It would be best to set delayed run like

    <ext:DurationMessage Duration="500" Message="Loading..." />
    but I dont know how.
  4. #4
    I found it

    <ListConfig LoadMask="false" />
    This is total disable, I guess there is no delayed mask, but not big deal, it loads very fast.

Similar Threads

  1. [CLOSED] Combobox with a store proxy load on expand
    By ViDom in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Nov 16, 2012, 4:45 PM
  2. Replies: 9
    Last Post: Oct 16, 2012, 12:05 AM
  3. [CLOSED] Changing loading mask text during ajax event
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Jan 22, 2010, 10:20 AM
  4. Replies: 3
    Last Post: Jan 28, 2009, 5:02 PM
  5. Disable Load Mask On Event
    By Tbaseflug in forum 1.x Help
    Replies: 3
    Last Post: Jan 09, 2009, 3:06 PM

Posting Permissions