I would like to know how to use the Table control in Apache Click. What I really need to know is how to populate a Table control. The examples I have seen so far involve the use of methods that are not defined in the example. In the example below, the methods getCustomerService() and getCustomersSortedByName(10) are not defined, making this example difficult to follow. Would anyone know of a simple way to populate a Table control? A complete example would be great.
public class SimpleTablePage extends Page {
@Bindable protected Table table = new Table();
// Constructor ------------------------------------------------------------
public SimpleTablePage() {
table.setClass(Table.CLASS_ITS);
table.addColumn(new Column("id"));
table.addColumn(new Column("name"));
table.addColumn(new Column("email"));
table.addColumn(new Column("investments"));
}
// Event Handlers ---------------------------------------------------------
/** * @see Page#onRender() */
@Override
public void onRender() {
List list = getCustomerService().getCustomersSortedByName(10);
table.setRowList(list);
}
}