[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-16 Thread [EMAIL PROTECTED]
Do we have a Jira issue for this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037653#4037653 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037653 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-16 Thread petemuir
For getting jboss-el integrated? Thats done in CVS - there are still a few issues to work out, and the docs aren't written yet View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037668#4037668 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-16 Thread stu2
http://jira.jboss.com/jira/browse/JBSEAM-697 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037669#4037669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037669 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-03 Thread [EMAIL PROTECTED]
is this working now? I'm having trouble in my application getting to work and am wondering if the fix has been implemented, or if it is still in the works. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034183#4034183 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-03 Thread petemuir
Still in the works, slated for 1.3 currently View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034186#4034186 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4034186 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-03 Thread [EMAIL PROTECTED]
petemuir wrote : Still in the works, slated for 1.3 currently Do we have a timeframe for 1.3? I need to make a decision quickly on how to proceed. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034191#4034191 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2007-04-03 Thread petemuir
There should be a beta in early may View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034218#4034218 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4034218 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread petemuir
I think the enhancements only apply when you are invoking a action not a value binding. So, use the normal... h:outputText value=#{purchase.status} / View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3990482#3990482 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread ngeadah
I was facing the same problem and also realized that the EL enhancements are not for value binding - which raises the question: wouldn't those EL enhancement be very useful for value bindings as well? As an example: | f:selectItems

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread sjmenden
I am also getting exceptions when I try to invoke action methods. I actually reproduced the docs example of print.println('Hello World!') However, when I go invoke an action method with parameters, it craps out. Any idea of what could cause this, because the documentation says I can do the

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread sjmenden
Hmm, I think I know the problem. I am trying to access action methods with the Enhanced EL in an Entity, which probaly is not going to work since I'm assuming EL assumes everything is field level access. So the reason I got one of the examples working before is because I did it from an EJB3

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread sjmenden
Actually, the way I'm getting around this is to define a Transient field with the name of the action method. so: | ... | @Transient private Double totalUnitCost; | ... | @Transient | public Double getTotalUnitCost() { | double total = 0; | for(Item

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread sjmenden
I was originally trying to get an action method working: I wanted purchase.totalUnitCost() to map to the method public Double totalUnitCost() I only had to convert it to ValueBinding because I couldn't get the action method to work. View the original post :

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread sjmenden
Clarification: #{purchase.totalUnitCost()} to map to public Double totalUnitCost() View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3990556#3990556 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3990556

[jboss-user] [JBoss Seam] - Re: Problem using Expression language enhancements

2006-12-01 Thread [EMAIL PROTECTED]
Right. Jacob is working on a new EL that will make all these hacks obsolete. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3990682#3990682 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3990682