jesse.dhillon
16 Apr 2009, 7:51 PM
Just tried switching my app to 3.0-rc1 to see what works and what doesn't. This doesnt:
var els = Ext.select('.foo', true, node);
els.enableDisplayMode();
els.slideOut('t');
If you inspect the DOM you will see that the mode on the elements was still visibility, not display. A workaround is:
var els = Ext.select('.foo', true, node);
els.each(function(el) {
el.enableDisplayMode();
});
els.slideOut('t');
Can anyone else confirm this?
var els = Ext.select('.foo', true, node);
els.enableDisplayMode();
els.slideOut('t');
If you inspect the DOM you will see that the mode on the elements was still visibility, not display. A workaround is:
var els = Ext.select('.foo', true, node);
els.each(function(el) {
el.enableDisplayMode();
});
els.slideOut('t');
Can anyone else confirm this?