Create an easier way to populate List of object to Select component
-------------------------------------------------------------------
Key: TAPESTRY-1743
URL: https://issues.apache.org/jira/browse/TAPESTRY-1743
Project: Tapestry
Issue Type: Wish
Components: Framework, tapestry-core
Affects Versions: 5.0.5
Reporter: Joshua Jackson
Fix For: 5.0.6
Create an easier way to populate List of object to Select component. Currently
we must create a class that implement SelectModel and a class that implement
ValueEncoder. Perhaps it would be nice if there property in the Select
component such as list that corresponds to the list of object to be displayed
for the combobox as such:
<select t:type="Select" t:id="member" model="member" list="members" />
and the Page class as such:
private List<Member> members;
public List<Member> getMembers()
{
return members;
}
public void setMembers(List<Member> members)
{
this.members = members;
}
@SetupRender
public void init(){
members = dao.getMembers();
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]