I'd like to reuse couple of fields I've created in ng-admin, except one specific field.
How can I manage to do that?
This is the code I'm using:
post.editionView()
.title('Edit post "{{ entry.values.title }}"') // title() accepts a template string, which has access to the entry
.actions(['list', 'show', 'delete']) // choose which buttons appear in the top action bar. Show is disabled by default
.fields([
post.creationView().fields(), //<--- I'd like to remove one field from here
Thank you,