AW: Validating DropDownChoice

2009-04-07 Thread Stefan Lindner
Is it a "normal" form without AjaxSubmitButton? -Ursprüngliche Nachricht- Von: Chris [mailto:ch...@carlsoncentral.com] Gesendet: Dienstag, 7. April 2009 16:53 An: users@wicket.apache.org Betreff: Validating DropDownChoice I have a DropDownChoice defined as follows. //

Validating DropDownChoice

2009-04-07 Thread Chris
I have a DropDownChoice defined as follows. // Model for populating Condition Dropdown IModel conditions = new LoadableDetachableModel() { public Object load() { List c = new ArrayList(); try { c = dao.getConditions(); } catch (DaoException e) { } return c; } }; // Condition Dropdown