Example link is here https://stackblitz.com/edit/angular-rwwjo3?file=src/app/app.component.ts
I want to show a specific name for object 0 and object 1 of Items array. How can I achieve this. I am using NgJsonEditor.
And the DATA is ->
export const DATA = { Items: [{ Name: "A", NumberProperty: 123, BooleanProperty: true, StringProperty: "abc", OrderBy: "DESC" }, { Name: "B", NumberProperty: 456, BooleanProperty: false, StringProperty: "def", OrderBy: "ASC" }] };
Thanks in advance.