column.setInsets(0, 5, 15, 0);
column.setWeightX(1.0);
column.setOpaque(false, false);
BorderLayoutBuilder wrapper = BorderLayoutBuilder.from(getUi(), 0, 10);
wrapper.north(InvisiblePanel.newPanel(topGrid)).center(column);
wrapper.withEmptyBorder(10, 5, 0, 5);
}
public Layout addToTopGrid(InputField f) {
return addToTopGrid(f.getLabel(), f.getInputComponent());
}