So, you want to populate the combo with values coming from the domain ?


Let me try again with a more complete example. In your controller, you will 
have some code looking like this :

Long selectedItemId = 123L;

Collection items = this.getSomeService().getItems();

form.setItemsBackingList(items, "id", "value");

form.setItem(selectedItemId);



We assume here that SomeService.getItems() returns a Collections of "Item". An 
"Item" being any bean with an "id" and a "value" property. You can use any 
other property name ...



Not sure if it is what you are looking for though ...
--
Jabber : [EMAIL PROTECTED] (feel free to contact me)
_________________________________________________________
Reply to the post : http://galaxy.andromda.org/forum/viewtopic.php?p=3483#3483
Posting to http://forum.andromda.org/ is preferred over posting to the mailing 
list!


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Andromda-user mailing list
Andromda-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to