-
24 Jan 2013 1:36 PM #1
Ext.tree.Panel ignores value of Ext.enableFx
Ext.tree.Panel ignores value of Ext.enableFx
REQUIRED INFORMATION
Ext version tested:- Ext 4.1.3
Description:- Ext.enableFx should control the Ext.tree.Panel.enableAnimations config property. It does not
HELPFUL INFORMATION
Debugging already done:
Code from Ext.tree.Panel constructor.
The this.animate property is always defined and is in fact a function defined by the Ext.util.Animate mixin included by AbstractComponent.Code:if (config.animate === undefined) { config.animate = Ext.isDefined(this.animate) ? this.animate : Ext.enableFx; } this.enableAnimations = config.animate
Possible fix:
The extra config.enableAnimations check is for backwards compatibility but may not be needed since it is not documented.Code:this.enableAnimations = config.enableAnimations || config.animate || Ext.enableFx;
-
25 Jan 2013 9:53 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
Thanks for the report! I have opened a bug in our bug tracker.
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-8327
in
4.2.


Reply With Quote