Skip to main content

Home/ GWT - Samples/ Group items matching "celltable" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Esfand S

Simple working example of the Data Presentation Widget CellTable - Google Web Toolkit | Google Groups - 0 views

  • protected void init() {                 VerticalPanel container = new VerticalPanel();                 initWidget(container);                 int pageSize = 10;                 CellTable<User> CellTable = new CellTable<User>(pageSize);                 setColumns(CellTable);                 setSelectionModel(CellTable);                 setDataSize(CellTable);                 int pageStart = 0;                 loadData(pageStart, pageSize, CellTable);                 SimplePager<User> pager = createPager(CellTable);                 container.add(CellTable);                 container.add(pager);         }
1 - 3 of 3
Showing 20 items per page