List of usage examples for com.google.gwt.editor.client IsEditor interface-usage
From source file com.google.gwt.sample.validation.client.widget.BetterValueBoxEditorDecorator.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.googlecode.mgwt.ui.client.editor.MValueBoxEditorDecorator.java
/**
* This MValueBoxEditorDecorator is more or less a copy clone of
* {@link ValueBoxEditor} and is needed to do JSR-303 BeanValidation. Only
* difference is the child added here must be of type {@link MValueBoxBase}.
*
* <p>
From source file com.googlecode.mgwt.ui.client.widget.base.MValueBoxBase.java
/**
* Base class for all input boxes
*
* This is a clone of {@link com.google.gwt.user.client.ui.ValueBoxBase}
*
* @author Daniel Kurka
From source file com.googlecode.mgwt.ui.client.widget.input.checkbox.MCheckBox.java
/** * A checkbox widget. */ public class MCheckBox extends TouchWidget implements HasValue<Boolean>, IsEditor<LeafValueEditor<Boolean>> { public static final MCheckBoxAppearance DEFAULT_APPEARANCE = GWT.create(MCheckBoxAppearance.class);
From source file com.googlecode.mgwt.ui.client.widget.input.radio.MRadioButton.java
/** * A touch enabled radio button implementation * * @author Daniel Kurka */ public class MRadioButton extends TouchWidget implements HasText, HasEnabled, HasValueChangeHandlers<Boolean>,
From source file com.googlecode.mgwt.ui.client.widget.MCheckBox.java
/**
* <h1>A checkbox widget</h1>
*
*
*
*
From source file com.googlecode.mgwt.ui.client.widget.MRadioButton.java
/**
* A touch enabled radio button implementation
*
* @author Daniel Kurka
* @version $Id: $
*/
From source file com.jdev.gwt.client.ui.field.validation.XValueBoxEditorDecorator.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.petro.span.client.CustomDateBox.java
/**
* A text box that shows a {@link DatePicker} when the user focuses on it.
*
* <h3>CSS Style Rules</h3>
*
* <dl>
From source file com.redspr.redquerybuilder.core.client.expression.ValueMultiListBox.java
public class ValueMultiListBox<T> extends Composite implements HasValue<Collection<T>>, IsEditor<TakesValueEditor<Collection<T>>> { private final List<T> values = new ArrayList<T>(); private final Map<Object, Integer> valueKeyToIndex = new HashMap<Object, Integer>(); private final Renderer<T> renderer;