I'm working with simple web app. I have an entity 'Person' that has a reference to another person (its parent).
public class Person {
.....
@javax.jdo.annotations.Column(allowsNull = "true",name = "parentId")
@Property(editing = Editing.ENABLED)
private Person parent;
...
Apache Isis render the property 'parent' as hyperlink but I have to show it into another tab with all details(the user can't edit parent). How can I do it?
Thanks in advice