box = Elements.createDivElement();
// Prevent our mouse events from going to the editor
DomUtils.stopMousePropagation(box);
TableElement tableElement = Elements.createTableElement();
tableElement.setClassName(css.items());
container = Elements.createDivElement(css.container());
DomUtils.preventExcessiveScrollingPropagation(container);
container.appendChild(tableElement);
box.appendChild(container);