Reputation: 2186
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
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