@Override
protected void onResize(int width, int height) {
super.onResize(width, height);
if (cell instanceof ResizableCell) {
ResizableCell rc = (ResizableCell) cell;
if (rc.redrawOnResize()) {
rc.setSize(width, height);
redraw();
} else {
rc.setSize(getElement(), width, height);
}
}
// inline-block is causing issues is some circumstances when the component has a width set
// we use inline-block to get "auto" width behavior. it is not needed with an explicit width.