[CLOSED] GridPanel slow rendering in IE8

  1. #1

    [CLOSED] GridPanel slow rendering in IE8

    We have an issue with a GridPanel performance in IE8. The grid loads about 10 sec (see attached example). Do you have any suggestions how to improve the performance?
    Attached Files
    Last edited by Daniil; Mar 26, 2013 at 4:15 AM. Reason: [CLOSED]
  2. #2
    Hello,

    Please create a standalone ASPX page and post directly here wrapping in [CODE] tags. We will be happy to investigate.

    Thank you.
  3. #3
    The problem that you bind 100 rows per page, each row in seperate group because group field has unique value per row (100 groups), for each group you create Button (100) buttons

    If you remove buttons creation then performance much better. Also you do not destroy buttons before grid view refresh, on each refresh you create new buttons but old buttons are not destroyed (it causes memory leakages because javascript instance of each button stays in memory), I suggest to replace button by anchor html element (or by css button, image and etc )
  4. #4
    Also you can use ImageCommand to add group commands
    https://examples2.ext.net/#/GridPane...Image_Command/
  5. #5
    Quote Originally Posted by Vladimir View Post
    The problem that you bind 100 rows per page, each row in seperate group because group field has unique value per row (100 groups), for each group you create Button (100) buttons
    It's because there is a test data in the example. Really we have 2-5 rows in each group.
    We used CommandColumn before but it was very slow. Then we replaced it to ActionColumn and custom buttons to improve performance but it's still slow.

    Quote Originally Posted by Vladimir View Post
    Also you can use ImageCommand to add group commands
    https://examples2.ext.net/#/GridPane...Image_Command/
    We'll try it.

    Thanks.

Similar Threads

  1. Replies: 3
    Last Post: Mar 19, 2013, 9:05 PM
  2. GridPanel is too slow!
    By ozlem in forum 2.x Help
    Replies: 4
    Last Post: Dec 06, 2012, 3:07 PM
  3. Replies: 1
    Last Post: May 29, 2012, 11:26 AM
  4. Slow rendering of Ext JS
    By westerncape1000 in forum 1.x Help
    Replies: 1
    Last Post: Sep 13, 2011, 9:43 AM
  5. [CLOSED] [1.0] Client rendering performance twice as slow
    By jchau in forum 1.x Legacy Premium Help
    Replies: 13
    Last Post: Nov 24, 2009, 2:39 PM

Posting Permissions