Remove Search field and Show count field( not using editor )

Remove Search field and Show count field( not using editor )

orik3ll0orik3ll0 Posts: 36Questions: 12Answers: 2
edited July 2017 in Free community support

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

Answers

  • tangerinetangerine Posts: 3,365Questions: 39Answers: 395

    What do you mean by "count field"?

  • orik3ll0orik3ll0 Posts: 36Questions: 12Answers: 2
    Answer ✓

    Problem was Solved, I used this script:

    $(document).ready(function() {
    $('#dataTable').DataTable( {
    "searching": false,
    "paging": true,
    "info": false,
    "lengthChange":false
    } );
    } );

This discussion has been closed.