[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread nickarls
By looking at the code, no way since the methods can be called in arbitrary order. But you can check it programmatically with Conversation.getInstance().isLongRunning(). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4122058#4122058 Reply to the post : http:

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Finally ! I found out the the bean behaved "Stateless" although I did annotate it as Stateful, no wonder it didn't work, I just found it out by coincidence. After changing it from conversation scope to the Session scope it suddenly worked like a charm ! The Conversation was over for seam afte

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Finally ! I found out the the bean behaved "Stateless" although I did annotate it as Stateful, no wonder it didn't work, I just found it out by coincidence. After changing it from conversation scope to the Session scope it suddenly worked like a charm ! For Seam the Conversation was over after

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread [EMAIL PROTECTED]
Nesting loops in JSF is tricky. What about if you don't use the nested loop? Does it work then? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4121790#4121790 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4121790 __

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Thank you, Did try it but without any changes If s:link is used function gets called with the null parameter with h:commandLink function is not called at all. | | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> | http://www.w3.org/1999/xhtml"; | xmlns:s="ht

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread [EMAIL PROTECTED]
Put the form around the whole datatable. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4121756#4121756 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4121756 ___ jboss-user mai

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-20 Thread EverlastX1
thx for this hint. "You must ensure that the parameters are available not only when the page is rendered, but also when it is sub- mittedIf the arguments can not be resolved when the page is submitted the action method will be called with null arguments" --> Stateful bean, right? I did read th

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-17 Thread [EMAIL PROTECTED]
Take a look at the EL chapter in the CVS ref guide: http://snapshots.jboss.org/maven2/org/jboss/seam/jboss-seam-reference-documentation/2.0.1-SNAPSHOT/jboss-seam-reference-documentation-2.0.1-SNAPSHOT.pdf View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120969#4

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
what reasons are responsible that a value of a var is not passed to the bean? "#{searcher.searchByCreator(var)}" // var is not empty but it is in the bean View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120195#4120195 Reply to the post : http://www.jboss.com/

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
a note if I put a constant as a param in JSF like this then my bean function SearchBean.searchByCreator(String c){} is called with the value 'test String' the variable c is always empty !!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120110#4120110 Rep

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
no docResult.doc.creator is an array of String In the second dataTable I loop thou the array and bind each array element to the var "c" and the elements of docResult.doc.getCreator() are instanceof Strings | | |

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread nickarls
and #{docResult.doc.creator} resolves to a normal String? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4119994#4119994 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4119994 _