Remove paging in the DataTable
Remove paging in the DataTable

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.
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
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