I've a listView to list a table from the database, and I've a column to edit a row. Edit link sets the response an edit page. Edit page's constructor takes an object related with database table. I've a dropdownchoice in an edit page. And i want to initialize the dropdownchoice's selected value with objects actual values instead of "Choose One" option. groupDropDownChoice.setModelObject(user.getGroupId()); does not handle the problem. I've tried user.getGroupName(), and just user object none of them working..What to do ? thanks
public editUserPage(final User user) {
super();
try {
DatabaseApp db = new DatabaseApp();
groupTypes = db.getGroups();
hospitals = db.getHospitals();
polikliniks = db.getPolikliniks();
} catch (ClassNotFoundException ex) {
Logger.getLogger(editUserPage.class.getName()).log(Level.SEVERE, null, ex);
} catch (SQLException ex) {
Logger.getLogger(editUserPage.class.getName()).log(Level.SEVERE, null, ex);
}
addUserForm = new Form("form");
groupDropDownChoice = new DropDownChoice("type", new Model(""), groupTypes,
new IChoiceRenderer() {
public Object getDisplayValue(Object object) {
return ((Group) object).getName();
}
public String getIdValue(Object object, int index) {
return Integer.toString(index);
}
});
groupDropDownChoice.setModelObject(user.getGroupId());