Vahe Akhsakhalyan
Vahe Akhsakhalyan

Reputation: 2186

issue in expandPath in TreePanel

I call TreePanel.expandPath(path) immediately after TreePanel.collapseAll(). It is supposed to expand the tree. It changes the plus icon of the root node to the minus icon but tree does not expand at all. How can I fixe this? Does this EXTJS bug?

TreePanel.collapseAll();
TreePanel.expandPath(path);

Upvotes: 0

Views: 286

Answers (1)

stagl
stagl

Reputation: 521

It's likely that the collapse/expand animations might be stepping on each other. Have you tried delaying your expandPath using DelayedTask?

Upvotes: 1

Related Questions