use of com.vaadin.ui.CssLayout in project jmix by jmix-framework.
the class WindowBreadCrumbs method createLinksLayout.
protected Layout createLinksLayout() {
CssLayout linksLayout = new CssLayout();
linksLayout.setPrimaryStyleName("jmix-breadcrumbs");
return linksLayout;
}
use of com.vaadin.ui.CssLayout in project jmix by jmix-framework.
the class JmixFileUploadField method initLayout.
protected void initLayout() {
container = new CssLayout();
container.addStyleName("jmix-fileupload-container");
fileNameButton = new JmixButton();
fileNameButton.setWidth(100, Unit.PERCENTAGE);
fileNameButton.addStyleName(ValoTheme.BUTTON_LINK);
fileNameButton.addStyleName("jmix-fileupload-filename");
setFileNameButtonCaption(null);
container.addComponent(fileNameButton);
container.addComponent(uploadButton);
clearButton = new JmixButton("");
clearButton.setStyleName("jmix-fileupload-clear");
container.addComponent(clearButton);
setShowClearButton(showClearButton);
setShowFileName(false);
setWidthUndefined();
}
use of com.vaadin.ui.CssLayout in project jmix by jmix-framework.
the class AbstractDataGrid method createTopPanel.
protected CssLayout createTopPanel() {
CssLayout topPanel = new CssLayout();
topPanel.setStyleName("jmix-data-grid-top");
return topPanel;
}
use of com.vaadin.ui.CssLayout in project jmix by jmix-framework.
the class AbstractTable method createTopPanel.
protected CssLayout createTopPanel() {
CssLayout topPanel = new CssLayout();
topPanel.setStyleName("jmix-table-top");
return topPanel;
}
Aggregations