Re: Grid: Composed property

2009-08-21 Thread Felix Gonschorek
make a getter in the page: public String getName() { return String.format("%s %s", user.getFirstname(), user.gestLastname()); } and in the tml: xmlns:p="tapestry:parameter"> ${name} Kai Weber schrieb: I have a Bean and want to display a combination of two fields in m

Re: Grid: Composed property

2009-08-21 Thread Ulrich Stärk
Give your bean a field called displayname, combining firstname and lastname there. If you use persistence, mark it as volatile. Then exclude firstname and lastname from displaying using grid's exclude parameter. HTH, Uli On 21.08.2009 12:41 schrieb Kai Weber: Hi, I have a Bean and want to d