[jboss-user] [JBoss Seam] - Re: DataModel in two SFSB issues (regression)
pete.muir@jboss.org
do-not-reply at jboss.com
Thu Oct 11 11:11:22 EDT 2007
You were using unintentional behaviour in Seam. I fixed this properly a while ago.
What you need to do is inject the values in the second bean:
@Stateful
| @Name("sectionManagementBean")
| public class SectionManagementBean implements SectionManagement {
| @In("#{sections.wrappedData}")
| private List<Section> sections;
|
| @In("#{sections.rowData}")
| private int selectedSectionNr;
| .
| .
| }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094156#4094156
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4094156
More information about the jboss-user
mailing list