Example usage for com.vaadin.ui CustomField subclass-usage

List of usage examples for com.vaadin.ui CustomField subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui CustomField subclass-usage.

Usage

From source file com.esofthead.mycollab.vaadin.web.ui.field.UserLinkViewField.java

/**
 * @author MyCollab Ltd.
 * @since 4.5.3
 */
public class UserLinkViewField extends CustomField {
    private static final long serialVersionUID = 1L;

From source file com.esofthead.mycollab.vaadin.web.ui.MultiSelectComp.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public abstract class MultiSelectComp<T> extends CustomField<T> {
    private static final long serialVersionUID = 1L;

From source file com.esofthead.mycollab.vaadin.web.ui.SavedFilterComboBox.java

/**
 * @author MyCollab Ltd
 * @since 5.1.1
 */
public abstract class SavedFilterComboBox extends CustomField<String> {
    private static Logger LOG = LoggerFactory.getLogger(SavedFilterComboBox.class);

From source file com.esofthead.mycollab.vaadin.web.ui.TimeZoneSelectionField.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public class TimeZoneSelectionField extends CustomField<String> {
    private boolean isVerticalDisplay = true;

From source file com.haulmont.cuba.web.gui.components.CubaFileUploadWrapper.java

public class CubaFileUploadWrapper extends CustomField {
    protected static final String FILE_UPLOAD_WRAPPER_STYLENAME = "c-fileupload-wrapper";
    protected static final String EMPTY_VALUE_STYLENAME = "c-fileupload-empty";

    protected HorizontalLayout container;
    protected Button fileNameButton;

From source file com.haulmont.cuba.web.toolkit.ui.CubaButtonField.java

public class CubaButtonField extends CustomField {
    protected Converter captionFormatter;

    public CubaButtonField() {
        setPrimaryStyleName("c-buttonfield");
    }

From source file com.haulmont.cuba.web.toolkit.ui.CubaColorPickerWrapper.java

public class CubaColorPickerWrapper extends CustomField {

    protected CubaColorPicker field;

    public CubaColorPickerWrapper() {
        initColorPicker();

From source file com.haulmont.cuba.web.toolkit.ui.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.toolkit.ui.CubaDateFieldWrapper.java

public class CubaDateFieldWrapper extends com.vaadin.ui.CustomField {

    protected final Layout composition;
    protected final WebDateField dateField;

    protected ThemeConstants theme;

From source file com.haulmont.cuba.web.toolkit.ui.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;