If you are using Seam v1.2.1.GA or above you can use this instead:

  | <h:selectOneMenu value="#{itemManager.itemChosen}" style="width:300px">
  |     <s:selectItems value="#{itemManager.itemList}" var="item"
  |                            label="#{item.code} #{item.name}" />
  |     <s:convertEntity />
  | </h:selectOneMenu>
  | 

This negates the need for a custom converter implementation as long as:


  The 'item' is an Entity bean
  Seam manages the persistence context
  The equals method of the entity bean returns true if it matches the primary 
key fields of the comparing bean




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035637#4035637

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035637
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to