use of com.haulmont.cuba.gui.UiComponents in project cuba by cuba-platform.
the class WebAppWorkArea method setBeanLocator.
@Inject
public void setBeanLocator(BeanLocator beanLocator) {
super.setBeanLocator(beanLocator);
UiComponents cf = beanLocator.get(UiComponents.NAME);
setInitialLayout(cf.create(VBoxLayout.NAME));
this.tabbedContainer = createTabbedModeContainer();
UserSettingsTools userSettingsTools = beanLocator.get(UserSettingsTools.NAME);
setMode(userSettingsTools.loadAppWindowMode());
}
Aggregations