Re: Passing parameter to property

2006-03-28 Thread Nima Boustanian
I can't see a single line of your code, but when sending values to method parameters - write the entire method name in your ognl. // Example one public void getValue(int value) { value++; } // I hope that helps. Apache wrote: Hi all, I need to pass a parameter to a property and don´t

Passing parameter to property

2006-03-28 Thread Apache
Hi all, I need to pass a parameter to a property and don´t know how to handle this (using tapestry 3.0.3). My page specification looks like this (clipping): ... ... So theres is a property getString(String) with a parameter. Tapestry sa