public MyFormDialog(final boolean resizable, final int numberOfColumns, final int width,
final DisplayableButton... displayableButtons)
{
super(resizable, displayableButtons);
setWidth(width);
formPanel = new MyFixedFormPanel(numberOfColumns, width - 6 * 2);// double padding 6px
setKeepScrollableWidth(false);
super.add(formPanel);
}