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.haulmont.cuba.web.toolkit.ui.CubaPickerField.java

public class CubaPickerField extends com.vaadin.ui.CustomField implements Action.Container {

    protected Field field;
    protected Converter captionFormatter;

    protected List<Button> buttons = new ArrayList<>(4);

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

public class CubaColorPickerWrapper extends CustomField<Color> {

    protected CubaColorPicker field;

    public CubaColorPickerWrapper() {
        initColorPicker();

From source file com.hybridbpm.ui.component.bpm.window.InConnectorParameterMappingField.java

/**
 *
 * @author Marat Gubaidullin
 */
public class InConnectorParameterMappingField extends CustomField<Map> {

From source file com.hybridbpm.ui.component.DocumentField.java

/**
 *
 * @author Marat Gubaidullin
 */
public class DocumentField extends CustomField<Document> implements Button.ClickListener {

From source file com.hybridbpm.ui.component.ParametersFieldGroup.java

/**
 *
 * @author Marat Gubaidullin
 */
public class ParametersFieldGroup extends CustomField<List> implements Button.ClickListener {

From source file com.hybridbpm.ui.component.PermissionsField.java

/**
 *
 * @author Marat Gubaidullin
 */
public class PermissionsField extends CustomField<List> {

From source file com.hybridbpm.ui.component.TranslatedField.java

/**
 *
 * @author Marat Gubaidullin
 */
public class TranslatedField extends CustomField<Translated> implements Button.ClickListener {

From source file com.jain.addon.component.upload.JImage.java

/**
 * <code>JImage<code> is a Image custom component
 * @author Lokesh Jain
 * @since Aug 28, 2012
 * @version 1.0.0
 */