This is configurable, see
http://isis.apache.org/guides/ug.html#_ug_wicket-viewer_configuration-properties_abbreviating-titles

If set to 0, then (IIRC) it will suppress the title completely (though the
icon is still available as a hyperlink to the object).

Cheers
Dan







On 27 September 2015 at 12:42, Stephen Cameron <[email protected]>
wrote:

> 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 <
> [email protected]
> > 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