Hi, All Case: A user own a location while the location is comprised of city, street... public class User { private Location location; // setter & getter } public class Location { private String city; // setter & getter }
In the user list page, I want to display the city as one column in Grid. But it doesn't work like this <table t:type="grid" t:source="userSource" include="location.city"></table>. The exception message is "User does not contain a property named 'location.city'". Is there a simple way to implement such function? Thanks in advance. DH