Should be working fine.

Are you sure you're showing the actual code, i.e. accountList vs accountsList ?

BTW are you accounts really just represented as Longs?

Regards

Sven

On 09/01/2010 01:15 PM, drf wrote:
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to