Show Mask when Filtering or Sorting

  1. #1

    Show Mask when Filtering or Sorting

    Is there any way to show a mask while the filter is being applied to the grid? I have the same question regarding sorting. My dataset is quite large ~8000 records and even with paging turned on (20 records per page) the sorting and filtering can take along time to be applied. I imagine if there is a way it will have to be applied via javascript but I'm not sure where to start. Any help would be appreciated. Thanks
  2. #2

    RE: Show Mask when Filtering or Sorting

    With 8,000 records, you should be using remote paging and sorting. That way, only 1 page of data is loaded and sent to client.
  3. #3

    RE: Show Mask when Filtering or Sorting

    That's a good suggestion and I'll be looking into it in the near future. I was hoping this could be a patch for the near future until I redesign later on. I usually use chrome and firefox and the speed is great. IE 7 on the other hand tends to hang in between sorts and filters for a few seconds. I'm hoping the loading mask could be a quick fix for ie until I start using remote paging and sorting.
  4. #4

    RE: Show Mask when Filtering or Sorting



    If you insist, you just have to add a loadmask to your gridpanel

    <ext:GridPanel runat="server" ID="grid">
    
    
    ...
    
    
    <LoadMask ShowMask="true" />
    
    
    ...
    
    
    </ext:GridPanel>
    Make sure to implement remote paging/sorting later! It's probably fast for you but transfer time will be slow for real users.

Similar Threads

  1. Replies: 6
    Last Post: Nov 03, 2012, 10:48 PM
  2. [CLOSED] GridPanel sorting and filtering problem
    By kenanhancer in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Mar 31, 2011, 3:38 PM
  3. [CLOSED] ShowMask + Show Mask in GridPanel on Sorting Column
    By Zarzand in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Mar 10, 2011, 12:17 AM
  4. Replies: 0
    Last Post: Aug 16, 2010, 10:28 PM
  5. Replies: 5
    Last Post: Jul 23, 2010, 8:52 AM

Posting Permissions