Example usage for com.google.gwt.cell.client AbstractEditableCell subclass-usage

List of usage examples for com.google.gwt.cell.client AbstractEditableCell subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.cell.client AbstractEditableCell subclass-usage.

Usage

From source file cc.alcina.framework.gwt.client.cell.EditTextCell.java

/**
 * An editable text cell. Click to edit, escape to cancel, return to commit.
 */
public class EditTextCell extends AbstractEditableCell<String, EditTextCell.ViewData> {
    private static Template template;

From source file cc.alcina.framework.gwt.client.cell.PropertyDateCell.java

/**
 * A {@link Cell} used to render and edit {@link Date}s. When a cell is selected
 * by clicking on it, a {@link DatePicker} is popped up. When a date is selected
 * using the {@link DatePicker}, the new date is passed to the
 * {@link ValueUpdater#update update} method of the {@link ValueUpdater} that
 * was passed to {@link #onBrowserEvent} for the click event. Note that this

From source file cc.alcina.framework.gwt.client.cell.PropertyDomainSuggestCell.java

/**
 *
 */
public class PropertyDomainSuggestCell<T> extends AbstractEditableCell<T, T> {
    private static final int ESCAPE = 27;

From source file cc.alcina.framework.gwt.client.cell.PropertySelectorCell.java

/**
 *
 */
public class PropertySelectorCell<T extends HasIdAndLocalId> extends AbstractEditableCell<Set<T>, Set<T>> {
    private static final int ESCAPE = 27;

From source file cc.alcina.framework.gwt.client.cell.PropertySingleSelectorCell.java

/**
 *
 */
public class PropertySingleSelectorCell<T> extends AbstractEditableCell<T, T> {
    private static final int ESCAPE = 27;

From source file cc.alcina.framework.gwt.client.cell.PropertyTextCell.java

/**
 * An editable text cell. Click to edit, escape to cancel, return to commit.
 */
public class PropertyTextCell extends AbstractEditableCell<String, PropertyTextCell.ViewData> {
    private static Template template;

From source file ch.cern.atlas.apvs.client.widget.EditTextCell.java

/**
 * An editable text cell. Click to edit, escape to cancel, return to commit.
 */
public class EditTextCell extends AbstractEditableCell<String, EditTextCell.ViewData> {

    interface Template extends SafeHtmlTemplates {

From source file com.colinalworth.xmlview.client.ElementCell.java

/**
 * 
 * @author colin
 *
 */
public class ElementCell extends AbstractEditableCell<Node, ElementCell.ViewState> {

From source file com.geocento.webapps.eobroker.customer.client.widgets.MaterialCheckBoxCell.java

public class MaterialCheckBoxCell extends AbstractEditableCell<Boolean, Boolean> {

    private final boolean dependsOnSelection;
    private final boolean handlesSelection;

    public MaterialCheckBoxCell() {

From source file com.google.code.tree.client.CustomEditTextCell.java

/**
 * An editable text cell with added text box size. Click to edit, escape to
 * cancel, return to commit.
 */
public class CustomEditTextCell extends AbstractEditableCell<UpdatableTreeNode, CustomEditTextCell.ViewData> {