HI,

is there any quick way of showing embedded object properties within a table
grid?
Like:

class User {
@Property String username;
@Embedded Address address;
}

@Embeddable
class Address {
String firstname, lastname, street, zip, state;
}

<t:grid source="users" row="user" add="firstname, lastname, street...">
  <p:firstnameCell>${user.firstname}</p:firstnameCell>
  <p:lastname, street...>...
</t:grid>

Is there any quicker way then explicitly having to specify the additional
fields of an embedded object?




--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Quick-way-of-showing-embedded-object-properties-tp5717357.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to