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 <vasiliy.ru...@gmail.com> 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 google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com<google-web-toolkit%2bunsubscr...@googlegroups.com>
> .
> 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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to