I already implemented a solution using KineticJS of drag and drop of items: from a toolbar (or an accordion, it doesn't matter) to a white area, a stage or canvas, the items are images and rectangles. The rectangles represent a room and the images are the equipments.
In all the examples I found after googling (until now) are basically about drawing a Kinetic.Group inside of a layer, adding shapes to that group and make it draggable in the stage.
The problem here is that I don't know how to make a rectangle to be a group, so that when I drag it over the canvas, the images will be dragged as well; ie when I drag a room that contains items, the whole group is dragged and dropped. I want to implement something like this: http://jsfiddle.net/tbYLe/2/ which performs as described above.
EDIT : this is what I have done until now http://jsfiddle.net/wQ8YA/15/