use of com.vaadin.flow.component.formlayout.FormLayout in project karnak by OsiriX-Foundation.
the class DicomEchoSelectionDialog method buildFormLayout.
private void buildFormLayout() {
formLayout = new FormLayout();
formLayout.setSizeFull();
buildDicomNodeTypeSelector();
buildDicomNodeSelector();
formLayout.add(dicomNodeTypeSelector, dicomNodeSelector);
}
use of com.vaadin.flow.component.formlayout.FormLayout in project karnak by OsiriX-Foundation.
the class DicomWorkListSelectionDialog method buildFormLayout.
private void buildFormLayout() {
formLayout = new FormLayout();
formLayout.setSizeFull();
buildWorklistNodeSelector();
formLayout.add(worklistNodeSelector);
}
use of com.vaadin.flow.component.formlayout.FormLayout in project karnak by OsiriX-Foundation.
the class DicomWorkListView method buildWlConfigurationForm.
private void buildWlConfigurationForm() {
wlConfigurationForm = new FormLayout();
buildCallingAETitleFld();
buildWlAetFld();
buildWlHostnameFld();
buildWlPortFld();
wlConfigurationForm.add(callingAetFld, workListAetFld, workListHostnameFld, workListPortFld);
setFormResponsive(wlConfigurationForm);
}
use of com.vaadin.flow.component.formlayout.FormLayout in project WebComponentKit by itsoulltd.
the class AbstractBeanEditor method initFormLayout.
private void initFormLayout() {
formLayout.setResponsiveSteps(new FormLayout.ResponsiveStep("0", 1), new FormLayout.ResponsiveStep("25em", 2));
Div div = new Div(formLayout);
div.addClassName("has-padding");
add(div);
}
use of com.vaadin.flow.component.formlayout.FormLayout in project aire-components by aire-ux.
the class AddFeatureFlagOverlay method addContent.
private void addContent() {
val form = new FormLayout();
keyInputField = new TextField("Key");
nameInputField = new TextField("Name");
descriptionInput = new TextArea("Description");
pathInputField = new Select<>();
pathInputField.setLabel("Extension Path");
pathInputField.setItems(getExtensionKeys());
tagInputField = new TextField("Tags");
enabledSwitch = new Switch("Enabled");
form.add(keyInputField, nameInputField, pathInputField, enabledSwitch, tagInputField, descriptionInput);
form.setColspan(descriptionInput, 2);
addContent(form);
}
Aggregations