Hi.
We've implemented a custom FileBrowserContentProvider to display directories and files from our services. In order to increase performance and customer appeal, we allow paging and hide directories in the grid and only show files. I've implemented a suggestion from other forums and removed the DirectoryItem objects from the grid in the OnExplorerPopulated event. This worked great.
My problem arises when the number of DirectoryItems exceeds the number of items in the page. ie: 30 DirectoryItems in the list, PageSize is set to 25. The grid will display there are "No records to display".
Is there a way to intercept the event that is loading the items into the grid, and just not include the directories in the list in the first place?