我已经设置了一个带有左面板(源)和右面板(源和目标)的小界面。
从左侧面板拖动/复制到右侧面板可以工作,并且在放置时会创建一个新的 div。
我现在希望能够将项目放入新的 div 中,即新的 div 也应该是一个源。
但是我不确定如何做到这一点,你能帮忙吗?
HTML
<div id="left-panel">
<div class="dojoDndItem">Div</div>
</div>
<div id="right-panel">
</div>
JS
//This is a creator to be run when an item is dropped onto the right panel
function myCreator(item, hint) {
if (item == 'Div') {
var myNode = dojo.create('div');
}
//This is how I create the sources
var leftPanel = new Source("left-panel", { copyOnly:true });
var rightPanel = new Source("right-panel", { accept:[ "div", "button", "image" ], creator:myCreator });
}