Collection<IEmployee> employees = this.store.getEmployees();
// Create the row, with a given rowId:
TableRow row = new TableRow();
String rowId = Long.toString(new Date().getTime());
row.addAttribute("id", rowId);
// Create the employee selection box (binding to employees) and add it to a column:
BindStatusHelper helper = new BindStatusHelper("command.employees");
Select selectionList = new Select(helper.getStatusExpression());
for (IEmployee emp : employees) {