Description
Having a tree-structure of a domain class A with persistent parent child relationship, there seems to be an issue with rendering the parent property column, when asking for a standalone collection view (of a list of these objects). The parent column is present, but the column's cells are empty.
class A { @Property(hidden=Where.PARENTED_TABLES) @Column(allowsNull="true") @Getter @Setter private A parent; @Property @Persistent(mappedBy="parent") @Getter @Setter private SortedSet<A> children; }
Strangely, if we switch to the excel view and download the collection, the cells of the parent column are filled in as expected. And this is no CSS issue (of hiding elements in the DOM), because there the corresponding HTML tags are actually empty.