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.ait.ext4j.client.ui.CheckBox.java

/**
 * Single checkbox field.
 */
public class CheckBox extends FieldBase implements HasValue<Boolean>, IsEditor<LeafValueEditor<Boolean>> {

    private LeafValueEditor<Boolean> editor;

From source file com.ait.ext4j.client.ui.Display.java

/**
 * A display-only text field which is not validated and not submitted. This is
 * useful for when you want to display a value from a form's loaded data but do
 * not want to allow the user to edit or submit that value. The value can be
 * optionally HTML encoded if it contains HTML markup that you do not want to be
 * rendered.

From source file com.ait.ext4j.client.ui.Hidden.java

/**
 * A basic hidden field for storing hidden values in forms that need to be
 * passed in the form submit.
 * 
 * This creates an actual input element with type="submit" in the DOM. While its
 * label is not rendered by default, it is still a real component and may be

From source file com.ait.ext4j.client.ui.TextField.java

/**
 * A basic text field. Can be used as a direct replacement for traditional text
 * inputs, or as the base class for more sophisticated input controls (like
 * TextArea and ComboBox). Has support for empty-field placeholder values (see
 * emptyText).
 */

From source file com.ait.toolkit.sencha.ext.client.ui.TextField.java

/**
 * A basic text field. Can be used as a direct replacement for traditional text
 * inputs, or as the base class for more sophisticated input controls (like
 * TextArea and ComboBox). Has support for empty-field placeholder values (see
 * emptyText).
 */

From source file com.ait.toolkit.sencha.touch.client.ui.CheckBox.java

/**
 * The checkbox field is an enhanced version of the native browser checkbox and is great for enabling your user to choose one or more items from a set (for example choosing
 * toppings for a pizza order). It works like any other field and is usually found in the context of a form.
 * 
 */
public class CheckBox extends Field implements HasValue<Boolean>, IsEditor<LeafValueEditor<Boolean>> {

From source file com.ait.toolkit.sencha.touch.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 inside forms and standalone.
 */
public class Slider extends Field implements HasValue<Integer>, IsEditor<LeafValueEditor<Integer>> {

From source file com.ait.toolkit.sencha.touch.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.
 * 
 */
public class Text<T> extends Field implements HasValue<T>, IsEditor<LeafValueEditor<T>> {

From source file com.ait.toolkit.sencha.touch.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.akjava.gwt.html5.client.input.ColorBox.java

/**
 * Represents a color field in an HTML form.
 */
public class ColorBox extends Widget
        implements HasName, HasValue<String>, IsEditor<LeafValueEditor<String>>/*,HasValueChangeHandlers<String>*/ {