This is in my polymorphic linked Note object, so suspect that is the reason
for the behaviour.



On Sun, Sep 27, 2015 at 8:36 PM, Stephen Cameron <steve.cameron...@gmail.com
> wrote:

> Hi,
>
> I am not sure if this is correct, that a title() value appears in a
> collection table column?
>
> In my Note class I have:
>
>     // region > identificatiom
>     @PropertyLayout(hidden = Where.ALL_TABLES)
>     public String title() {
>         return "Note: " + getSubject();
>     }
>
>     // endregion
>
>     // region > name (property)
>
>     private String subject;
>
>     @Column(allowsNull = "false", length = 40)
>     @MemberOrder(sequence = "1")
>     public String getSubject() {
>         return subject;
>     }
>
>     public void setSubject(final String subject) {
>         this.subject = subject;
>     }
>
>
> Title is appearing, along with Subject, even though I have attempted to
> hide it.
>
>
>
>
>
>

Reply via email to