Remove paging in the DataTable
Remove paging in the DataTable
maddyganesh
Posts: 6Questions: 5Answers: 0
Hi,
If the DataTables having less than ten numbers of rows then i need to remove the paging (Prev, next buttons and dropdown) ..how can i do this
This discussion has been closed.
Answers
If you know in advance how much data there is, you could use the
paging
option to disable the paging.If you don't, then use
drawCallback
to show / hide the paging control as needed based on the amount of data in the table.Allan