In ng-admin I am able to add a field of type reference
and display the name
of the referenced entity by
nga.field('schedule', 'reference')
.targetEntity(schedule)
.targetField(nga.field('name'))
.label('Schedule'),
Is it possible to display a derived field of the referenced entity, say name (id)
?
I tried using .template()
with no luck.