Hello,
I've a DTO which extends BaseModel. These DTO contains another DTO which also extends BaseModel.
On my FormPanel I want to show Attributes from both DTO's how can I access attributes from the SubDTO?
Example:
PersonDTO extends BaseModel
Two attributes:
String name
CityDTO city
CityDTO extends BaseModel
Two attributes:
String name
String postalCode
My view only knows PersonDTO directly.
How to bind the attributes of CityDTO?
Thanks in advance
Kind regards
Jan
