-
6 Oct 2010 4:34 AM #1
window motion
window motion
is it possible to invoke a window.. with effect ?????
like in the site http://dev.sencha.com/deploy/dev/exa...p/desktop.html
how the window comes...
is this a property of the desktop????
ie.on button click i want to invoke a window which should slowly move and settle a defined position....
-
6 Oct 2010 4:36 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
It already does that if you specify an animTarget in the show parameters.
-
6 Oct 2010 4:38 AM #3
how??? can u help me with code???
-
6 Oct 2010 5:00 AM #4Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
Code:Ext.onReady(function () { new Ext.Button({ text: 'Click me', handler: function(btn){ var win = new Ext.Window({ title: 'Hello', width: 300, height: 200, closable: true, showAnimDuration: 2 // 2 sec is really slow }); win.show(btn.getEl()); }, renderTo: Ext.getBody() }); });
-
6 Oct 2010 7:43 PM #5
thanxxx Condor....
its very nice...
Similar Threads
-
Window hide then close vs window close... Problems re-opening the window.
By zhegwood in forum Ext 3.x: Help & DiscussionReplies: 7Last Post: 11 Jan 2010, 5:42 PM -
[FIXED] Window.setAutoHide() closes window on window moving
By sorrro in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 6 Oct 2009, 6:50 AM -
Ext.ux.MinWindow DEMO #open window from icon like desktop+slide window
By koko2589 in forum Community DiscussionReplies: 4Last Post: 3 Jul 2009, 6:04 AM -
[FIXED] Modal window opening another modal window not masking first window
By lucasas in forum Ext GWT: Bugs (1.x)Replies: 5Last Post: 23 Jul 2008, 8:49 AM


Reply With Quote