Ext Window Drawers Alpha 1
September 12th, 2008 Jay Garcia Posted in Current Projects, EXT Examples, Uncategorized |
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’);
}
}