use of com.vaadin.flow.component.textfield.TextField in project karnak by OsiriX-Foundation.
the class TransferStatusGrid method createSopInstanceUidFilter.
/**
* Creation of the filter for sop instance uid
*
* @param sopInstanceUidColumn Column
* @param filterRow Row filter
*/
private void createSopInstanceUidFilter(Column<TransferStatusEntity> sopInstanceUidColumn, HeaderRow filterRow) {
TextField sopInstanceUidField = new TextField();
sopInstanceUidField.addValueChangeListener(event -> {
transferStatusFilter.setSopInstanceUid(event.getValue());
transferStatusDataProvider.refreshAll();
});
sopInstanceUidField.setValueChangeMode(ValueChangeMode.EAGER);
filterRow.getCell(sopInstanceUidColumn).setComponent(sopInstanceUidField);
sopInstanceUidField.setSizeFull();
sopInstanceUidField.setPlaceholder("Filter Sop Instance Uid");
UIS.setTooltip(sopInstanceUidField, TOOLTIP_FILTER_BY_ORIGINAL_OR_DEIDENTIFIED_VALUE);
}
use of com.vaadin.flow.component.textfield.TextField in project karnak by OsiriX-Foundation.
the class DicomWorkListView method buildCallingAETitleFld.
private void buildCallingAETitleFld() {
callingAetFld = new TextField();
callingAetFld.setLabel("Calling AETitle");
callingAetFld.setRequired(true);
callingAetFld.setRequiredIndicatorVisible(true);
callingAetFld.setValueChangeMode(ValueChangeMode.EAGER);
}
use of com.vaadin.flow.component.textfield.TextField in project karnak by OsiriX-Foundation.
the class DicomWorkListView method buildWlAetFld.
private void buildWlAetFld() {
workListAetFld = new TextField("Worklist AET");
workListAetFld.setValueChangeMode(ValueChangeMode.EAGER);
}
use of com.vaadin.flow.component.textfield.TextField in project karnak by OsiriX-Foundation.
the class DicomEchoView method buildCalledHostnameFld.
private void buildCalledHostnameFld() {
calledHostnameFld = new TextField("Called Hostname");
calledHostnameFld.setValueChangeMode(ValueChangeMode.EAGER);
}
use of com.vaadin.flow.component.textfield.TextField in project karnak by OsiriX-Foundation.
the class DicomEchoView method buildCalledAetFld.
private void buildCalledAetFld() {
calledAetFld = new TextField("Called AET");
calledAetFld.setValueChangeMode(ValueChangeMode.EAGER);
}
Aggregations