hi Team,
Can you please help me with how i can add type column in ej2 filemanager. I have tried adding like this but it is showing blank values
Sample: https://stackblitz.com/edit/qiwyv6?file=index.ts
detailsViewSettings: {
columns: [
{
field: 'name', headerText: 'Name', customAttributes: { class: 'e-fe-grid-name' }
},
{
field: '_fm_modified', headerText: 'DateModified', format: 'MM/dd/yyyy hh:mm a'
},
{
field: 'size', headerText: 'Size', template: '<span class="e-fe-size">${size}</span>', format: 'n2'
},
{
field: 'type', headerText: 'Type',
}
]
}