Listbox authListbox = (Listbox) getFellow("auth");
Iterator authItr = authListbox.getItems().iterator();
while (authItr.hasNext()) {
Listitem item = (Listitem) authItr.next();
AuthForm authForm = (AuthForm) item.getValue();
if (authForm.getAuthId().toString().equals(obj.getAuthId().toString())) {
authListbox.setSelectedItem(item);
}
}
Datebox validAfterDate = (Datebox) getFellow("validAfterDate");