Hi drf!
Have you checked the generated HTML? Is there any 'selected' attribute in your <option> tags?
I am having a problem that my DropDownChoice is not selecting the item I
expect, only "Choose one". Here is the code:
...
private List<Long>  accountList = new ArrayList<Long>();
private Long selectedAccount;

public AccountsDropDownChoice(String id, final Component component) {
    super(id);
    initializeAccounts();
    selectedAccount = getDefaultAccount();

    final DropDownChoice<Long>  dropDown = new
DropDownChoice<Long>("accountsDropDown",

new PropertyModel(this, "selectedAccount"),

accountsList) {

    }

The value selectedAccount is being updated correctly when an item in the
dropdown is selected, but the dropdown is not defaulting to the value in
that field to begin with. If anyone can help it is very appreciated.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to