Reputation: 21877
How to make FolderListModel component to filter the files and contain only directories. I want to display only directories in a list view.
Upvotes: 3
Views: 1196
Reputation: 7518
i faced the same issue, here is my workaround :
nameFilter: ["//\\"];
showDirs: true;
Upvotes: 1
Reputation: 230
Not sure about this one, but you can try:
nameFilters: [ "" ]
showDirs: true
Upvotes: 0
Reputation: 437
Looking at the documentation I'd say it's not possible to filter out files from the list.
Upvotes: 0