glittershark / reactable

Fast, flexible, and simple data tables in React
glittershark.github.io/reactable
MIT License
1.51k stars 222 forks source link

Possibility to remove pagination for print #330

Closed sassanh closed 7 years ago

sassanh commented 8 years ago

Thanks for this great module. Is it possible to remove pagination when printing a reactable? Usually changes in ui for print version are done by media queries (@meida print { ... }) but I don't understand how to achieve this for disabling the pagination.

brinley commented 7 years ago

This should hide pagination for print media

@media print { .reactable-pagination {display: none;} }

sassanh commented 7 years ago

Yeah, thanks.