Hey all,
I’m working on developing a custom element for a client. The documentation is pretty good for the things it covers, but naturally I’ve been asked to delve into things I can’t find documentation for - the requirement is that the custom element contain a dropzone for better overall custom layout, but also that the whole thing be draggable. Is it possible to drag a dropzone? If so, how do I make that happen?
Here’s the relevant part of my options:
'options' => [
'valid_children' => [ '*' ],
'library' => true,
'empty_placeholder' => true,
'is_draggable' => true,
'fallback_content' => ' ',
'dropzone' => [
'enabled' => true,
Thanks!