Ext Window Drawers Alpha 1
September 12th, 2008 Jay Garcia Posted in Current Projects, EXTJS, Ext Extensions, Uncategorized | 4 Comments »
Ext Window Drawers Alpha 1 is released today with two new examples; the drag and drop and basic grid window in the desktop.
Click here to download: winDrawers.alpha1.tgz
The following features were added:
- IE6 and IE7 Certification
- Fx3 Certification
- Titles
- Support for [ X ] close button in titles
- Resize finished
- Window.el.move intercepted
- animate : true || false honored
Examples to date:
- Four Drawer basic
- Grid and Form
- Grid to grid DnD (new)
- Web Desktop (new – not complete)

(drag and drop example)

(grid in desktop window example)
Known issues:
- IE6/7 – Issues with z-ordering (desktop only thus far)
- Desktop window maximize to normal size not hooked properly
November 10th, 2008 at 12:35 pm
Try the following:
1. Open the grid-to-grid drag&drop example in Firefox.
2. Drag several companies to the drawer.
3. Collapse the drawer and watch the collapse animation.
You can avoid this problem by adding the x-panel-animated class to the element during animation.
November 13th, 2008 at 10:16 am
Thanks Condor
I tried this in Fx 3 via the command:
Ext.getCmp(‘ext-comp-1005′).drawers.e.show()
and
Ext.getCmp(‘ext-comp-1005′).drawers.e.hide()
I didn’t see any weirdness. :-\
November 17th, 2008 at 1:36 am
problem @condor mentioned only appears in Fx for Win. =)
adding the following listeners config to the plugin solves the issue:
listeners: {
beforeshow: function(self) {
self.getEl().addClass(‘x-panel-animated’);
},
beforehide: function(self) {
self.getEl().addClass(‘x-panel-animated’);
},
show: function(self) {
self.getEl().removeClass(‘x-panel-animated’);
}
}
July 29th, 2009 at 5:48 pm
i have a problem, I added a form to the n window, anda when it shows it bye
win.drawer.n.show(true);
it shows the form inside the n win but when I do this
win.drawer.n.show();
the form inside the win doesn´t show .. why is this?? i´m usin the lates version of extjs