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.kie.uberfire.client.common.DirtyableFlexTable.java

public class DirtyableFlexTable extends FlexTable implements DirtyableContainer {

    public boolean hasDirty() {
        Iterator<Widget> itr = iterator();
        while (itr.hasNext()) {
            Widget w = itr.next();

From source file org.kuali.student.common.ui.client.configurable.mvc.multiplicity.MultiplicityTable.java

/**
 * A MultiplicityTable displays data in a GWT FlexTable, one cell per field defined, one row per iteration in the supplied data.
 * Data is displayed as defined in the MultiplicityConfiguration passed in the ctor
 * If concatenated fields have been defined the values will be concatenated (comma delimited)  and displayed in a single table cell
 *
 * Fields are included in the table based on the FieldDescriptors added to the configuration

From source file org.kuali.student.core.statement.ui.client.widgets.table.SectionTable.java

/**
 * This is a generic table for assembling non-sortable tables with sections
 *
 */

public class SectionTable extends FlexTable {

From source file org.kuali.student.core.statement.ui.client.widgets.table.TreeTable.java

/**
 * Layout the token tree in GWT FlexTable.
 * 
 * */
public class TreeTable extends FlexTable {

From source file org.lorislab.smonitor.gwt.uc.form.ModelForm.java

/**
 * The abstract model form.
 *
 * @author Andrej Petras
 * @param <T> the object.
 */

From source file org.mobicents.slee.container.management.console.client.common.ControlContainer.java

/**
 * @author Stefano Zappaterra
 * 
 */
public class ControlContainer extends FlexTable {

From source file org.obiba.opal.web.gwt.app.client.ui.DefaultFlexTable.java

/**
 * A FlexTable with a header and basic styling from bootstrap.
 */
public class DefaultFlexTable extends FlexTable {
    private final Element head;

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

/**
 * List all the requests for downloadable documents and their status.
 */
public class ExportTable extends FlexTable {

    private final static int FILE_TYPE = 0;

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

public class FilterNavigationTable extends FlexTable {

    // ui elements
    private FormListBox formsBox;
    private FilterListBox filtersBox;
    private FilterSubTab filterSubTab;

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

public class FormTable extends FlexTable {

    private static int TITLE_COLUMN = 0;
    private static String TITLE_HEADING = "Title";
    private static int FORM_ID_COLUMN = 1;
    private static String FORM_ID_HEADING = "Form Id";