// store the searchObject for reReading
customerCtrl.setSearchObj(so);
Listbox listBox = customerCtrl.listBoxCustomer;
Paging paging = customerCtrl.pagingCustomerList;
int ps = customerCtrl.pagingCustomerList.getPageSize();
// set the model to the listbox with the initial resultset get by the
// DAO method.
((PagedListWrapper<Customer>) listBox.getModel()).init(so, listBox, paging);
labelCustomerSearchResult.setValue(Labels.getLabel("labelCustomerSearchResult.value") + " " + String.valueOf(paging.getTotalSize()));
}