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