Hi,
when I use the following code from the examples for floating components
Code:
Ext.application({
name: "Modal-Test",
icon: 'icon.png',
launch: function () {
Ext.Viewport.add({
xtype: 'panel',
html: 'This is a centered and modal panel',
modal: true,
//hideOnMaskTap: true,
centered: true,
draggable: true
});
}
});
and only add the line
the floating panel isn't centered anymore and you can't drag it to the top of the screen.
I've searched the forums but didn't find a solution and my last thread on this topic wasn't answered. So, can please anybody help me with this!?
Thanks!