Re: OGNL expressions in Tapestry 5

2009-10-28 Thread Howard Lewis Ship
tSomething(´some constant´)} > > You should add the ChenilleKit Tapestry package to use OGNL: > http://www.chenillekit.org/chenillekit-tapestry/index.html > >> and how does this work now? > > Almost anything can be implemented using a getter method. As the logic is

Re: OGNL expressions in Tapestry 5

2009-10-28 Thread Thiago H. de Paula Figueiredo
http://www.chenillekit.org/chenillekit-tapestry/index.html and how does this work now? Almost anything can be implemented using a getter method. As the logic is in a Java class, it's easier to write, debug and test. I don't use nor miss OGNL expressions in Tapestry 5. :) -- Thi

Re: OGNL expressions in Tapestry 5

2009-10-28 Thread Sven Homburg
http://tapestry.apache.org/tapestry5.1/guide/propexp.html or try this http://chenillekit.codehaus.org/chenillekit-tapestry/ognlbinding.html with regards Sven Homburg Founder of the Chenille Kit Project http://www.chenillekit.org 2009/10/28 ARD Marx Tobias > > > Why are the following ognl e

OGNL expressions in Tapestry 5

2009-10-28 Thread ARD Marx Tobias
Why are the following ognl expressions not supported anymore in the latest Tapestry5 version? ${method.getSomething()} ${method.getSomething(´some constant´)} ${ognl:method.getSomething(´some constant´)} and how does this work now? Thanks! Toby