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:

(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

4 Responses to “Ext Window Drawers Alpha 1”

  1. 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.

  2. 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. :-\

  3. 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’);
    }
    }

  4. 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

Leave a Reply

You must be logged in to post a comment.