List of usage examples for com.google.gwt.user.client.ui FlexTable removeAllRows
public void removeAllRows()
From source file:org.sigmah.client.ui.widget.CalendarWidget.java
License:Open Source License
/** * Removes all rows. Must be when the structure of the calendar has been changed (display mode) *///from w ww. j a v a 2 s .c om private void clear() { final FlexTable grid = (FlexTable) getWidget(); grid.clear(); grid.removeAllRows(); }