Hi All, I'm playing with Roo & GWT...

Here is some script:

entity --class ~.server.domain.AbstractContact --abstract

entity --class ~.server.domain.PersonContact --extends ~.server.domain.AbstractContact --testAutomatically
entity --class ~.server.domain.CompanyContact --extends ~.server.domain.AbstractContact --testAutomatically
I've generated app, got scaffold for both entities... Now I have pretty simple question... I need to show both contact types in one grid... How to do that?

Thx...