hph Posted October 4, 2016 Posted October 4, 2016 If I set a UniSimplePanel to draggable and resizable then the resizing is not correct. If I resize the UniSimplePanel it will resize and move. If the draggable property is false then the resizing is ok. My configuration: UniSimplePanel1.Draggable.Enabled := True; UniSimplePanel1 -> ClientEvents -> ExtEvents -> added fn: function added(sender, container, pos, eOpts) { sender.resizable={ minWidth: 160, minHeight: 120, dynamic: true, pinned: true, handles: 's e se', heightIncrement: 20, widthIncrement: 20 } } thanks for any help. best regards hanspeter Quote
Sherzod Posted October 4, 2016 Posted October 4, 2016 Hi, Good question! For now can you try this?!: UniSimplePanel -> ClientEvents -> ExtEvents -> afterrender fn: function afterrender(sender, eOpts) { var me = sender; Ext.onReady(function() { if (me.dd) { me.dd.addInvalidHandleClass('x-resizable-handle') } }); } Best regards. Quote
hph Posted October 5, 2016 Author Posted October 5, 2016 Hi, You are the best! It works :-) Thank you very much. best regards Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.