[jboss-user] [JBoss Seam] - Re: Using @DataModel and @DataModelSelection in different Se

2007-09-05 Thread [EMAIL PROTECTED]
1) Try @In(e.rowData) 2) You need to call a method on DataProviderBean for the @DataModelSelection/outjection to happen. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4081217#4081217 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Using @DataModel and @DataModelSelection in different Se

2007-09-05 Thread barfoos
[EMAIL PROTECTED] wrote : | 1) Try @In(e.rowData) | I'll give this a try. Thanks anonymous wrote : | 2) You need to call a method on DataProviderBean for the @DataModelSelection/outjection to happen. I already tried to use setter and getter methods annotated with @DataModelSelection

[jboss-user] [JBoss Seam] - Re: Using @DataModel and @DataModelSelection in different Se

2007-09-05 Thread barfoos
barfoos wrote : [EMAIL PROTECTED] wrote : | | 1) Try @In(e.rowData) | | | I'll give this a try. Thanks | | I gave it a try and got the following Exception: | org.jboss.seam.RequiredException: In attribute requires non-null value: EventHandler.a.rowData | Sorry. I'm

[jboss-user] [JBoss Seam] - Re: Using @DataModel and @DataModelSelection in different Se

2007-09-05 Thread [EMAIL PROTECTED]
No,you would need to call a method on the bean for the bijection to work. You could use a factory for this... The exception means that the value of #{e.rowData} is null - required=false will allow null values. For some reason the value is not being set - you'll have to see why. View the