01: package com.bostechcorp.cbesb.console.client;
02:
03: import com.google.gwt.user.client.ui.FlexTable;
04:
05: public class WidgetUtil {
06: public static void clearTable(FlexTable table) {
07: table.clear();
08: //int len=tab.getRowCount();
09: for (int i = 0; i < table.getRowCount(); i++) {
10: table.removeCells(i, 0, table.getCellCount(i));
11: }
12:
13: for (int i = 0; i < table.getRowCount(); i++) {
14: table.removeRow(0);
15: }
16: }
17: }
|