Here is my "Recapito" entity code:
@Entity @Getter @Setter
public class Recapito extends AceArcId implements Serializable {
private static final long serialVersionUID = 1L;
@ManyToOne(fetch=FetchType.LAZY, optional=false)
private Contatto contatto;
@Column(length=254)
private String email;
@Column(length=254)
private String telefono;
@Column(length=254)
private String sito;
@Column(length=254)
private String paginaSocial;
@Column()
private Date data;
}
This screenshot shows how it renders by default:
I'd like to choose what properties of "Contatto" to show in the list view of "Recapito", instead of just the "nome" property.
How do I choose what properties to show in the list view?