[
http://jira.jboss.com/jira/browse/JBSEAM-1768?page=comments#action_12371297 ]
Pete Muir commented on JBSEAM-1768:
-----------------------------------
I would implement this by allowing a user EntityIdentifier to specified.
<s:selectItems> enhancement to allow for non-ID field when used
with <s:convertEntity/>
---------------------------------------------------------------------------------------
Key: JBSEAM-1768
URL:
http://jira.jboss.com/jira/browse/JBSEAM-1768
Project: JBoss Seam
Issue Type: Feature Request
Components: JSF
Affects Versions: 2.0.0.BETA1
Reporter: Nicklas Karlsson
Priority: Optional
When using an entity like
@Entity
public class Person {
@Id
private Integer id;
private String firstName;
private String lastName;
private String personnelCode;
...
}
It would be handy if it could be possible to use
<h:selectOneMenu value="#{project.managerCode}">
<s:selectItems value="#{bean.managerList}" var="manager"
label="#{manager.lastName}, #{manager.firstName}"
insertValue="#{manage.personnelCode}"/>
<s:convertEntity />
</h:selectOneMenu>
e.g. being able to choose which field (in this case the manager personnel code) would be
selected (instead of the entity ID)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira