We can use the Wijmo DataView source (which implements the IDataView interface) to implement paging, filtering, and sorting functions. You may refer to the following link which describes the same. This article describes how you can implement paging in SpreadJS, when it is created using AngularJS. We would need to use ArrayDataView to implement paging in SpreadJS. The controller would create a new ArrayDataView instance that would act as datasource for SpreadJS. Here we would even define the functions to navigate to previous or next page and even clear paging. Here is the code:
Finally, bind the controller to SpreadJS to display the data and perform page navigation using the functions defined above. Here is the code:
Download the attached sample which implements the above code.