Example usage for com.google.gwt.user.client.ui FlexTable subclass-usage

List of usage examples for com.google.gwt.user.client.ui FlexTable subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui FlexTable subclass-usage.

Usage

From source file org.opendatakit.aggregate.client.table.OdkAdminListTable.java

public class OdkAdminListTable extends FlexTable {

    private static int DELETE_COLUMN = 0;
    private static String DELETE_HEADING = "Delete";
    private static int USER_COLUMN = 1;
    private static String USER_HEADING = "User Name";

From source file org.opendatakit.aggregate.client.table.OdkTablesTableList.java

/**
 * This is the class that displays the list of the database tables that belong
 * to ODK Tables to the user. It may eventually be the point of interaction to
 * enter the tables and add coarse control. <br>
 * Based on OdkAdminListTable.
 * 

From source file org.opendatakit.aggregate.client.table.OdkTablesViewAppLevelFileInfo.java

/**
 * Displays the entries in the DbTableFileInfo table that pertain to
 * the application and not to any specific table.
 *
 * Based upon OdkTablesViewTableFileInfo
 *

From source file org.opendatakit.aggregate.client.table.OdkTablesViewInstanceFileInfo.java

/**
 * Displays the files associated with individual rows in a table.
 *
 * @author sudar.sam@gmail.com
 *
 */

From source file org.opendatakit.aggregate.client.table.OdkTablesViewTable.java

/**
 * Displays the contents of a table.
 *
 * @author sudar.sam@gmail.com
 *
 */

From source file org.opendatakit.aggregate.client.table.OdkTablesViewTableFileInfo.java

/**
 * Displays the entries in the DbTableFileInfo table that pertain to a specific
 * table.
 *
 * @author sudar.sam@gmail.com
 *

From source file org.opendatakit.aggregate.client.table.PublishTable.java

/**
 * List all the external services to which forms are published.
 */
public class PublishTable extends FlexTable {

    private static final int HEADER_ROW = 0;

From source file org.opendatakit.aggregate.client.table.SubmissionAdminTable.java

public class SubmissionAdminTable extends FlexTable {

    private static final String BLANK_VALUE = " ";

    public SubmissionAdminTable(SubmissionUISummary summary) {
        ArrayList<Column> tableHeaders = summary.getHeaders();

From source file org.opendatakit.aggregate.client.table.SubmissionTable.java

public class SubmissionTable extends FlexTable {

    private static final String BLANK_VALUE = " ";
    private ArrayList<Column> tableHeaders;
    private ArrayList<SubmissionUI> tableSubmissions;

From source file org.opennms.gwt.web.ui.asset.client.tools.fieldsets.FlexTableFieldSet.java

/**
 * @author <a href="mailto:MarkusNeumannMarkus@gmail.com">Markus Neumann</a> 
 * </br>
 * For later use. Don't use it jet!
 */
public class FlexTableFieldSet extends FlexTable {