javascript - How to search in rad file explorer for current folder including sub folders -
javascript - How to search in rad file explorer for current folder including sub folders -
i want utilize filter in rad file explorer needs search current directory including sub folders items.currently can search in main folder not sub folders items using built in filter box.some body help me please
that not available oob because cause performance issues. nevertheless, can create such functionality yourself:
implement custom filesystemcontentprovider, overriding resolvedirectoryastree() , resolvedirectory() methods in way, described in help article: http://www.telerik.com/help/aspnet-ajax/fileexplorer-custom-filebrowsercontentprovider.html
call recursively resolvedirectoryastree() , resolvedirectory() methods content provider in order take references listed files , folders (e.g. base.resolvedirectoryastree()). 1 time gather needed info 1 place can create search through items in it. despite of accuracy of such implementation, note information-gathering slow process, , might meet performance issues.
you can find more detailed info regarding custom commands in next help article: http://www.telerik.com/help/aspnet-ajax/fileexplorer-add-custom-button-context-menu-item.html
there may other ways done, not know them.
javascript asp.net
Comments
Post a Comment