> Unfortunately the clear() does not work, the Javadoc explained that
> clear() removes all widgets from the table, but does not remove other
> HTML or "text" contents of cells.
Sounds strange. Can you post a small example what exactly you mean?
Especially what you mean with "other HTML or text". HTML is a widget
and text generally is handled as Label-widget.
Regards, Lothar
I don't know if this a bug in FlexTable (I assume the developers
will read here as well), but the fastest solution would be to use
customersFlexTable.setText(row, 0, new Label(customer.getFirstName()));
customersFlexTable.setText(row, 1, new Label(customer.getLastName()));
Regards, Lothar