Remove Search field and Show count field( not using editor )
Remove Search field and Show count field( not using editor )
orik3ll0
Posts: 36Questions: 12Answers: 2
I want to remove search field and show count field. How can I do it? I am not using Editor. I am using libraries such as:
1)bootstrap.min.js
2)dataTables.bootstrap.min.js
3)jquery.dataTables.min.js
4)jquery.min.js
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
What do you mean by "count field"?
Problem was Solved, I used this script:
$(document).ready(function() {
$('#dataTable').DataTable( {
"searching": false,
"paging": true,
"info": false,
"lengthChange":false
} );
} );