Wijmo UI for the Web
Multiple File Selection
Wijmo User Guide > Widgets > FileExplorer > Features > Multiple File Selection

The wijfileexplorer widget allows you to select more than one file or folder by setting the allowmultipleselection option to true.

Use the following script to set allowMultipleSelection option true and press the ctrl button to select multiple files or folders.

    <script type="text/javascript">
           
            $(document).ready(function () {
                $("#fileexplorer").wijfileexplorer({
                  actionUri: "fileexplorer.ashx",
                  viewPaths: ["~/Example"],
                  allowMultipleSelection: true,
                                
            });
        });          
</script>
See Also

Reference