Re: Invoke method with pararmeters in TP5.0.5

2007-06-28 Thread Nick Westgate
No, not yet. Expansions are a shorthand for Property Bindings, described here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/parameters.html The original reason for prop (IIRC) was to improve on the performance of OGNL. Now that the much faster OGNL 2.7 has been released, it could be a

Invoke method with pararmeters in TP5.0.5

2007-06-28 Thread Allen Guo
Hi All, Suppose there is a method with parameters in page class like this // CssPage.java . pubic String getEcho(String echo){ return "[" + echo + "]"; } Can I call it in html template like this? // CssPage.html .. ${getImage('HELLO')} ... I just tested it. It doesn't work. I want to k