Example usage for com.google.gwt.dom.client TableRowElement TAG

List of usage examples for com.google.gwt.dom.client TableRowElement TAG

Introduction

In this page you can find the example usage for com.google.gwt.dom.client TableRowElement TAG.

Prototype

String TAG

To view the source code for com.google.gwt.dom.client TableRowElement TAG.

Click Source Link

Usage

From source file:fr.putnami.pwt.core.widget.client.TableHead.java

License:Open Source License

private Container ensureAspectRow(String aspectClass) {
    Container row = this.aspectRows.get(aspectClass);
    if (row == null) {
        row = new Container(TableRowElement.TAG);
        this.aspectRows.put(aspectClass, row);
        row.setVisible(false);/*from ww w  .  j a v  a 2s  .  c om*/
        for (int i = 0; i < this.headerRow.getWidgetCount() - 1; i++) {
            row.append(new TableTH<>());
        }
        this.append(row);
    }
    return row;
}

From source file:fr.putnami.pwt.core.widget.client.TableRow.java

License:Open Source License

public TableRow() {
    super(TableRowElement.TAG);
}