Drag Handle and Resize combo
See original GitHub issueIs it possible to have both resize and dragging with a handle work together? I’ve tried various config combinations and it just ends up losing resize functionality.
Here is what it currently looks like
interact(box)
.resizable({
preserveAspectRatio: true,
edges : { left: true, right: true, bottom: true, top: true }
})
.on('resizemove', function(event) {
...
})
.draggable({
onmove: dragMoveListener
}) .allowFrom('.box-menu-bar');
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Resizing Drop-Down Combo Boxes - IBM
Procedure. In the Layout Window, click the drop-down combo box you want to resize in the form. Drag a handle of the combo...
Read more >click, drag, and resize events getting mixed - Stack Overflow
When I finish dragging an element, both the dragstop and click handlers are called. Same with resize and click. Any ideas on how...
Read more >Allow image resizing with inline drag handles instead of a dialog
When selecting an image, I expect drag handles to show me that an image selection has occurred and that let me resize the...
Read more >Resize combobox: handle in both sides - Ext.NET Forums
Hi I have noticed that resizing a combo (if enabled) is a a bit tedious if the ... of the combo dropdown or...
Read more >Move and resize controls independently - Microsoft Support
Drag the layout by using the layout selector at the upper-left corner of the layout. A layout selector on a form in Design...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ThePlastic https://jsfiddle.net/taye/z0zdtobb/
is drag handle and resize combo now working? EDIT: I tried with the master branch but it seems it still doesn’t work, has anyone tried successfully?