Hi,
Just add the column without a Header text:
CellTable<Contact> table = new CellTable<Contact>();
TextColumn<Contact> nameColumn = new TextColumn<Contact>() {
@Override
public String getValue(Contact object) {
return object.name;
}
};
table.addColumn(nameColumn);
On Thu, Jan 27, 2011 at 7:26 PM, Vasily <[email protected]> wrote:
> Hi All... have few questions:
>
> 1. How to remove header & footer from the CellTable in case I don't
> need them?
> 2. I need pretty simple widget: table, no header, no footer... my
> styles, cells, no key-based selection, only key-based paging.... I
> wanna re-use such CellTable features as "push data". What is the best
> way to do that? My own Cell Widget?
>
> Thx!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-web-toolkit%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.