currently i use css to hide the footer and set the page size to 20. if the data is more than 20, it will only show the first 20 records.How can i disable pagination, and display full list of records ?
Have you tried passing in the prop options
<MaterialTable options={ {paging: false} } />
it works.
Thanks
Most helpful comment
Have you tried passing in the prop
options<MaterialTable options={ {paging: false} } />