简体   繁体   中英

Data Table[Jquery Plugin] to overwrite

I am using the Jquery DataTables plugin. Link:- https://datatables.net/examples/api/multi_filter.html I am able to use it properly but what I want is I need to remove the Unnecessary items that are shown in it like:- show entries,search box,previous-next buttons. I added only this in my code.
<script type="text/javascript" src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>

Can any one tell me how to overwrite it.

To remove Search filer and pagination add this parameters,

$(document).ready(function() {
    $('#Datatable').dataTable( {
        "bPaginate": false,
        "bFilter": false,
        "bInfo": false
                 } );
} );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM