Example usage for com.google.gwt.editor.client IsEditor interface-usage

List of usage examples for com.google.gwt.editor.client IsEditor interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.editor.client IsEditor interface-usage.

Usage

From source file com.emitrom.touch4j.client.ui.Slider.java

/**
 * The slider is a way to allow the user to select a value from a given
 * numerical range. You might use it for choosing a percentage, combine two of
 * them to get min and max values, or use three of them to specify the hex
 * values for a color. Each slider contains a single 'thumb' that can be dragged
 * along the slider's length to change the value. Sliders are equally useful

From source file com.emitrom.touch4j.client.ui.Text.java

/**
 * The text field is the basis for most of the input fields in Sencha Touch. It
 * provides a baseline of shared functionality such as input validation,
 * standard events, state management and look and feel.
 * 
 */

From source file com.emitrom.touch4j.ux.rating.client.Rating.java

public class Rating extends Field implements HasValue<Integer>, IsEditor<LeafValueEditor<Integer>> {

    private LeafValueEditor<Integer> editor;
    private int itemsCount = 5;
    private boolean showClearIcon = true;

From source file com.gafactory.core.client.ui.suggestions.SuggestedEditor.java

public class SuggestedEditor<T> extends Composite implements LeafValueEditor<T>, IsEditor<LeafValueEditor<T>>,
        HasConstrainedValue<T>, HasEnabled, HasPlaceholder, HasSelectionHandlers<T> {

    /*===========================================[ STATIC VARIABLES ]=============*/

    private final SuggestOracle oracle;

From source file com.gafactory.core.client.ui.suggestions.SuggestedListEditor.java

public class SuggestedListEditor<T, ID extends Serializable> extends Composite
        implements LeafValueEditor<List<T>>, IsEditor<LeafValueEditor<List<T>>>, HasValue<List<T>>, HasEnabled {

    /*===========================================[ STATIC VARIABLES ]=============*/

    BagePanel<T> bagePanel;

From source file com.gafactory.core.client.ui.widgets.ValueListBoxSelect.java

/**
 * Implementation of {@link HasConstrainedValue} based on a
 * {@link com.google.gwt.dom.client.SelectElement}.
 * <p>
 * A {@link Renderer Renderer<T>} is used to get user-presentable strings to
 * display in the select element.

From source file com.github.apetrelli.gwtintegration.editor.client.widget.LeafValueEditorDecorator.java

/**
 * A simple decorator to display leaf widgets with an error message.
 * <p>
 * <h3>Use in UiBinder Templates</h3>
 * <p>
 * The decorator may have exactly one ValueBoxBase added though an

From source file com.github.gwtbootstrap.client.ui.CheckBox.java

/**
 * CheckBox widgets.
 * <p>
 * Re-design for Bootstrap.
 * </p>
 * 

From source file com.github.gwtbootstrap.client.ui.FileUpload.java

/**
 * A FileInput for Bootstrap form.
 * @since 2.0.4.0
 * @author ohashi keisuke
 *
 */

From source file com.github.gwtbootstrap.client.ui.ValueListBox.java

/**
 * The TW Bootstrap style ValueListBox
 * 
 * @param <T> the value type
 * @author ohashi keisuke
 * @since 2.0.4.0