Wijmo UI for the Web
Paging
Wijmo User Guide > Widgets > FileExplorer > Features > Paging

The wijfileexplorer widget displays files and folders in one continuous window. However, by setting allowPaging to true, you can divide large amounts of data into pages of a specified size for easier viewing. You can use pageSize option to determine the number of records to show on each page. By default, it shows ten.

For example, the following script sets the allowpaging option to true and pageSize to 5.     

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

Reference