Thursday 16 March 2017

Fancytree Drag and drop of Node outside a frame



Fancytree Drag and drop of Node outside a frame     
 I cannot drop item outside of tree





By default draggable node in tree create in parent component, if you want drag to other frames you should specify you'r parent component appendTo: "body" For my it's work:
     dnd: {
        draggable: {
            zIndex: 1000,
            scroll: false,
            revert: "invalid",
            appendTo: "body"
        },
 }


No comments:

Post a Comment

how-to-recursively-create-subfolder-in-each-folder-of-a-directory-in-cmd

test.cmd: @echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo...