-
25 Sep 2012 7:41 AM #1
Dragging Collapsed Panel
Dragging Collapsed Panel
Hello.
I was trying to have a floating draggable panel in my application that is able to be collapsed and dragged around the screen. It works fine when the collapse direction is either 'top' or 'bottom'. However, when the collapse direction is either 'right' or 'left', the collapsed panel will no longer drag. Is there some configuration that I need to initialize for this to work or is this a bug?
Here is the simple panel that I am using:
Please let me know what I am doing incorrectly.Code:Ext.define('MyProj.view.matrix.forms.MyPanel',{ extend: 'Ext.form.Panel', alias: 'widget.mypanel', title: 'Test Panel', frame: true, width: 350, autoShow: true, collapsible: true, collapsed: false, collapseDirection: 'left', //Have tried 'top', 'bottom', 'right', and 'left'... Works for 'top' and 'bottom' floatable: true, floating: true, draggable: true, animCollapse: false, resizable: true });
Thanks
-
27 Sep 2012 8:21 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,591
- Vote Rating
- 434
This should technically work so I'm going to open a bug for it.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
27 Sep 2012 10:42 AM #3
You found a bug! We've classified it as
EXTJSIV-7371
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.


Reply With Quote