Is there a way we can configure the mui data table to load first few pages (1 or 2) and then perform on-demand lazy load when clicking the 3rd page?
Our current usage of this mui-data table loads about 6MB of data and accessing from poor network bandwidth locations takes about 1-2 minutes to load.
Hello @kkmathigir. You have access to an onChangePage as well as onTableChange function which should allow you to do this. You can take a look at the serverside-pagination example for some ideas about how to implement it.
Thanks @gabrielliwerant . We will take a look at them and get back for any further questions.