Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Removing GroupBy Animation

    Hi,

    Is there a way of disabling animation when expanding/contracting groups (groupBy) in a ListGrid? Something similar to TreeGrids' :
    Code:
    table.setAnimateFolders(false);
    is the desired behaviour.

    Thanks

    #2
    For anyone interested:

    Solved this with a
    Code:
    table.setProperty("animateFolders", false);
    AFTER the table is added to its parent.

    There should probably be a 'setAnimateGroupFolders(Boolean b)' method to control this...

    Comment


      #3
      setAnimateFolders(boolean) has been moved up to the ListGrid class. Also look for the setAnimateFolderSpeed(..) API in the next build.

      Comment

      Working...
      X