List of usage examples for com.google.gwt.user.client.ui HasValue interface-usage
From source file at.ac.fhcampuswien.atom.client.gui.attributes.components.slider.SliderBar.java
/**
* A widget that allows the user to select a value within a range of possible
* values using a sliding bar that responds to mouse events.
*
* <h3>Keyboard Events</h3>
* <p>
From source file ch.unifr.pai.twice.multipointer.client.widgets.MultiFocusTextBox.java
public class MultiFocusTextBox extends Composite implements HasValue<String> { private final int padding = 5; private final int fontSize = 13; private final Map<String, Cursor> cursors = new HashMap<String, Cursor>();
From source file ch.unifr.pai.twice.multipointer.provider.client.widgets.MultiFocusTextBox.java
public class MultiFocusTextBox extends Composite implements HasValue<String> { private final int padding = 5; private final int fontSize = 13; private final Map<String, Cursor> cursors = new HashMap<String, Cursor>();
From source file ch.unifr.pai.twice.widgets.client.MultiFocusTextBox.java
public class MultiFocusTextBox extends Composite implements HasValue<String> { private final Map<String, Cursor> cursors = new HashMap<String, Cursor>(); FlowPanel p = new FlowPanel(); private String value;
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>> {