List of usage examples for com.vaadin.v7.ui CustomField subclass-usage
From source file com.haulmont.cuba.web.gui.components.CubaCurrencyField.java
public class CubaCurrencyField extends CustomField { protected static final String CURRENCYFIELD_STYLENAME = "c-currencyfield"; protected static final String CURRENCYFIELD_LAYOUT_STYLENAME = "c-currencyfield-layout"; protected static final String CURRENCY_STYLENAME = "c-currencyfield-currency"; protected static final String CURRENCYFIELD_TEXT_STYLENAME = "c-currencyfield-text";
From source file com.haulmont.cuba.web.gui.components.CubaFieldWrapper.java
/** * Simple wrapper for Cuba components which does not contain Vaadin Field. */ public class CubaFieldWrapper extends CustomField { protected com.haulmont.cuba.gui.components.Component component;
From source file com.haulmont.cuba.web.gui.components.table.EditableColumnFieldWrapper.java
public class EditableColumnFieldWrapper extends CustomField { protected Component component; public EditableColumnFieldWrapper(Component component, com.haulmont.cuba.gui.components.Component columnComponent) {
From source file com.haulmont.cuba.web.widgets.CubaButtonField.java
public class CubaButtonField extends CustomField { protected Converter captionFormatter; public CubaButtonField() { setPrimaryStyleName("c-buttonfield"); }
From source file com.haulmont.cuba.web.widgets.CubaPickerField.java
public class CubaPickerField extends com.vaadin.v7.ui.CustomField implements Action.Container { protected Component field; protected Converter captionFormatter; protected List<Button> buttons = new ArrayList<>(4);
From source file com.haulmont.cuba.web.widgets.CubaResizableTextAreaWrapper.java
public class CubaResizableTextAreaWrapper extends CustomField { protected List<ResizeListener> listeners = new ArrayList<>(); public interface ResizeListener { void onResize(String oldWidth, String oldHeight, String width, String height);
From source file com.haulmont.cuba.web.widgets.renderers.componentrenderer.grid.editor.ComponentCustomField.java
/**
* Fake-Field for the grid-editor which just displays the component
* from the table-cell.
*
* Caution! Does NOT support buffered-mode/commit. It just hands through
* the component from the cell.
From source file de.symeda.sormas.ui.caze.AbstractTableField.java
/**
* TODO replace table with grid?
* TODO whole component seems to need improvement (e.g. should use setInternalValue instead of setValue)
* Does probably not make sense, because of future update to Vaadin 8
*
* @author Martin Wahnschaffe
From source file de.symeda.sormas.ui.importer.ImportPersonSelectField.java
@SuppressWarnings("serial") public class ImportPersonSelectField extends CustomField<PersonIndexDto> { public static final String CREATE_PERSON = "createPerson"; public static final String SELECT_PERSON = "selectPerson";
From source file de.symeda.sormas.ui.person.PersonSelectField.java
@SuppressWarnings("serial") public class PersonSelectField extends CustomField<PersonIndexDto> { public static final String CREATE_PERSON = "createPerson"; public static final String SELECT_PERSON = "selectPerson";