0
votes

In the datatable plugin have a option like "infoFiltered". This one is used to show how many rowsin the datatable in all pages.But i don't want to show how many rows in the datatable.So,how to hide that one?

1

1 Answers

2
votes

I am guessing you're asking about sInfoFiltered option. To hide that,

set oLanguage.sInfoFiltered to blank as shown below.

$(document).ready( function() {
     $('#example').dataTable( {
       "oLanguage": {
         "sInfoFiltered": ""
       }
     } );
   } );

Documentation