Hello.
I'm looking for a way to customize the navigation pane template of File Manager. I see there is only a limited set of properties in NavigationPaneSettingsModel. I would like to customize the HTML, for instance, to add a custom image to the tree nodes.
In short, something like:
<ejs-filemanager>
<e-navigationpane>
<ng-template #navigationPaneTemplate let-data>
<!-- You can add your custom HTML for folder names here -->
<div [innerHTML]="data.text"></div>
</ng-template>
</e-navigationpane>
</ejs-filemanager>
I'm wondering if there is such an option. Thank you for your reply.