-
16 Apr 2009 7:51 PM #1
[FIXED][3.0 RC1] CompositeElement.enableDisplayMode does not work?
[FIXED][3.0 RC1] CompositeElement.enableDisplayMode does not work?
Just tried switching my app to 3.0-rc1 to see what works and what doesn't. This doesnt:
If you inspect the DOM you will see that the mode on the elements was still visibility, not display. A workaround is:Code:var els = Ext.select('.foo', true, node); els.enableDisplayMode(); els.slideOut('t');
Can anyone else confirm this?Code:var els = Ext.select('.foo', true, node); els.each(function(el) { el.enableDisplayMode(); }); els.slideOut('t');
-
16 Apr 2009 8:11 PM #2
Just found out about the useDisplay config option for effects. I was just doing it the wrong way previously, which happened to work anyway.
-
17 Apr 2009 11:18 AM #3Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 44
-
17 Apr 2009 2:11 PM #4
Fixed in SVN.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote