I've been trying out Blocky to develop a simple animation based application and faced this issue. As mentioned in the docs, I create the xml tree structure of my toolbox, then when I create a new instance of Blockly, it will append the toolbox to that particular div.
Ex:
var workspace = Blockly.inject('blocklyDiv', {
media: './media/',
toolbox: document.getElementById('toolbox'),
trashcan: true
});
Although it works well, it doesn't let us decide the place where we want to keep the toolbox. In my application, I wanted to place the toolbox separate from the workspace (in a separate div), but I couldn't find any guide to do that in their documentation.
Can someone help me with this?