Example usage for com.google.gwt.gen2.table.client FixedWidthFlexTable removeRow

List of usage examples for com.google.gwt.gen2.table.client FixedWidthFlexTable removeRow

Introduction

In this page you can find the example usage for com.google.gwt.gen2.table.client FixedWidthFlexTable removeRow.

Prototype

@Override
public void removeRow(int row) 

Source Link

Usage

From source file:com.qualogy.qafe.gwt.client.component.QPagingScrollTable.java

License:Apache License

private void clearColumnHeaders() {
    final FixedWidthFlexTable headerTable = getHeaderTable();
    if (headerTable == null) {
        return;/*w ww  . ja  v  a  2s . co m*/
    }
    if (headerTable.getColumnCount() > 0) {
        headerTable.removeRow(0);
        headerTable.clearAll();
    }
}