[CLOSED] IE 8 Store filtering issue.

  1. #1

    [CLOSED] IE 8 Store filtering issue.

    Hello.

    I faced with the following issue in IE 8. I have a store with much data (> 1500 records), which is bind to a grid. The store is configured as buffered:
    Buffered="true" LeadingBufferZone="0" TrailingBufferZone="0" PageSize="10"
    When I filter this store, the IE throws a message, that script is running too long. After some investigation I found that, if block grid's view refreshing then IE does not hang. I block view refreshing like this:

    view.blockRefresh = true;
    ......        //store filtering
    view.blockRefresh = false;
    setTimeout(function() {
         view.refresh(); // if comment this line, than proccess is not hang
    }, 10);

    Unfortunately, I was not able to create a quite simple example to reproduce this. Could you suggest a solution of this issue?

    Best regards.
    Last edited by Daniil; Nov 01, 2012 at 5:53 PM. Reason: [CLOSED]
  2. #2
    Can you clarify why did you set so small PageSize?
    So small page size will increase amount of ajax requests to the server (if proxy is used) or increase data parsing attempts (from memory data)

    Can you you increase PageSize and retest? If your data contains 1500 records (and proxy is not used) then i recommend to set PageSize=1500

Similar Threads

  1. [CLOSED] [1.4] Treepanel Filtering issue
    By MP in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 06, 2012, 10:45 PM
  2. [CLOSED] Filtering a store with nested data
    By jchau in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Dec 13, 2011, 1:27 PM
  3. Grid (Store) filtering question
    By quasimidi in forum 1.x Help
    Replies: 2
    Last Post: Jun 15, 2010, 9:10 AM
  4. Filtering Can't work in store
    By syed2uk in forum 1.x Help
    Replies: 1
    Last Post: Jan 19, 2010, 5:02 AM
  5. Replies: 1
    Last Post: May 18, 2009, 1:41 PM

Posting Permissions