Hello I ask how to change the default rows in entries.
Hello I ask how to change the default rows in entries.
Calupazkarl
Posts: 1Questions: 1Answers: 0
$('#many-table').DataTable({
processing: true,
pageLength: 5,
serverSide: true,
deferRender:false,
"ajax": {
url: "action.php",
type: "POST",
data: {
action: 'fetch_appointment'
}
},
Answers
Are you asking how to show
5
in the length menu drop down? Use thelengthMenu
to add the5
option to the list.If this doesn't help then please provide more details about your question.
Kevin