I'm working now with Gridstack.js and it's good for me, but (there is always a but) does someone knows how i can position the grid-stack-item as defined in a JSON array?
Example HTML
<div class="grid-stack">
<div id="1" class="grid-stack-item">
<div class="grid-stack-item-content"></div>
</div>
<div id="2" class="grid-stack-item">
<div class="grid-stack-item-content"></div>
</div>
<div id="3" class="grid-stack-item">
<div class="grid-stack-item-content"></div>
</div>
</div>
My JSON
[{"widgetId":"1","x":0,"y":2,"width":3,"height":4},{"widgetId":"2","x":1,"y":6,"width":3,"height":1},{"widgetId":"3","x":0,"y":7,"width":3,"height":4}]
I can not find anything about that in the documentation. And i am afraid i is not possible.