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

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

Introduction

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

Usage

From source file com.anritsu.mcrepositorymanager.client.utils.DynamicSelectionCell.java

/**
 * A {@link Cell} used to render a drop-down list.
 */
public class DynamicSelectionCell extends AbstractInputCell<String, String> {

    interface Template extends SafeHtmlTemplates {

From source file com.anritsu.mcrepositorymanager.client.utils.TextAreaInputCell.java

/**
 * An {@link AbstractCell} used to render a text input.
 */
public class TextAreaInputCell extends AbstractInputCell<String, TextAreaInputCell.ViewData> {

    interface Template extends SafeHtmlTemplates {

From source file com.gafactory.core.client.ui.grids.TextInputCell.java

/**
 * An {@link com.google.gwt.cell.client.AbstractCell} used to render a text input.
 */
public class TextInputCell extends AbstractInputCell<String, TextInputCell.ViewData> {

    interface Template extends SafeHtmlTemplates {

From source file com.goodow.web.reader.client.TextAreaCell.java

public class TextAreaCell extends AbstractInputCell<String, TextAreaCell.ViewData> {

    public static class ViewData {

        private String lastValue;

From source file com.gwtmodel.table.view.table.edit.CustomizedGwtSelectionCell.java

/**
 * A {@link Cell} used to render a drop-down list.
 */
abstract class CustomizedGwtSelectionCell extends AbstractInputCell<String, String> {

    interface Template extends SafeHtmlTemplates {

From source file com.jitlogic.zico.widgets.client.SelectCell.java

public class SelectCell<T, V> extends AbstractInputCell<V, V> {

    interface Template extends SafeHtmlTemplates {
        @Template("<option value=\"{0}\">{1}</option>")
        SafeHtml option(String val, String desc);

From source file com.lemania.sis.client.UI.DynamicSelectionCell.java

/**
 * A {@link Cell} used to render a drop-down list.
 */
public class DynamicSelectionCell extends AbstractInputCell<String, String> {

    interface Template extends SafeHtmlTemplates {

From source file com.radoslavhusar.tapas.war.client.ui.DynamicSelectionCell.java

/**
 * A {@link Cell} used to render a drop-down list.
 */
public class DynamicSelectionCell extends AbstractInputCell<String, String> {

    interface Template extends SafeHtmlTemplates {

From source file com.ritchey.attendance.client.view.SelectionCell.java

/**
 * A {@link Cell} used to render a drop-down list.
 */
public class SelectionCell extends AbstractInputCell<String, String> {

    interface Template extends SafeHtmlTemplates {

From source file com.ritchey.attendance.client.view.TextInputCell.java

/**
 * An {@link AbstractCell} used to render a text input.
 */
public class TextInputCell extends AbstractInputCell<String, TextInputCell.ViewData> {

    public interface Template extends SafeHtmlTemplates {