[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-28 Thread amitev
Btw today i had a similar issue with page scoped dataModel but i was passing the object as method param with el like this and the same issue as here occured. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078780#4078780 Reply to the post : http://www.jboss

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-28 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM-1877 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078776#4078776 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078776 ___ jboss-use

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-09 Thread ilya78
Can please someone help me out. Here is a simple application to reproduce just the problem: | @Name("eventLister") | @Scope(ScopeType.EVENT) | public class EventListerAction implements Serializable { | | @In FacesMessages facesMessages; | | @DataModel(value="event

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-08 Thread ilya78
"ilya78" wrote : "[EMAIL PROTECTED]" wrote : Yes, that is what PAGE scope does. So use it. | | But it does not work with DataModel - I've posted above the example that is not working. It is a mistake in the example above, the correct is : @DataModel(value="eventList", scope=ScopeType.PAGE

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-08 Thread ilya78
"[EMAIL PROTECTED]" wrote : Yes, that is what PAGE scope does. So use it. But it does not work with DataModel - I've posted above the example that is not working. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071913#4071913 Reply to the post : http://www.

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-08 Thread [EMAIL PROTECTED]
Yes, that is what PAGE scope does. So use it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071910#4071910 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071910 ___ jboss-us

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-07 Thread ilya78
"tim_ph" wrote : try scope CONVERSATION or wider Thanks, I have tried: It only works with session and long running conversation. But using such a wider scope introduces more complications, like ending the conversation, cleaning the data from the session, etc. I understood from the docs that Page

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2007-08-07 Thread tim_ph
try scope CONVERSATION or wider View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071721#4071721 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071721 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2006-08-17 Thread c_eric_ray
A couple of things 1. Make sure your web page references the correct Seam Named Component. 2. Make sure your Scope is appropriate. I've found that the exception you get always points back to one of these two things. There could be others, but this is what I've seen. Most likely bfo81 is correct

[jboss-user] [JBoss Seam] - Re: DataModelSelection is null

2006-08-17 Thread bfo81
Hm... seems like Seam cannot find a component named "inboxEnvelopeSearch"... just a small idea: Is the InboxEnvelopeSearchBean annotated with @Name("inboxEnvelopeSearch")? Maybe a typo somewhere? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965729#3965729