This is my HTML
<div id="module-menu" class="draggable-demo-nav"></div>
<div id="grid-wrapper">
<div class="grid-row">
<div class="grid-window">
<div class="chart" id="chart1"></div>
</div>
<div class="grid-window">
<div class="chart" id="chart2"></div>
</div>
</div>
<div class="grid-row">
<div class="grid-window">
<div class="chart" id="chart3"></div>
</div>
<div class="grid-window">
<div class="chart" id="chart4"></div>
</div>
</div>
</div>
I have a menu (#module-menu) of draggable options (.module-menu-option), and a target grid (#grid-wrapper) with 4 windows (.grid-window). Contained within them are the charts i want to populate that havent been so yet. Depending on what is dragged over, i want it to then populate that unique chart position with content based on the dragged option. The problem is, i dont know how to get the target window id to then populate that target.
I have tried mouseover event but when you are dragging an item it doesnt work. When i try ‘event.args.target’ is uses the dragged item rather than the target. Does anyone know a solution?
Thanks
I have tried using a mouseover event on the