DataTables

DataTables Examples

by csornmo

HTML

<link rel="stylesheet" href="//cdn.datatables.net/1.10.0/css/jquery.dataTables.css">
<script src="//cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
<table cellpadding="0" cellspacing="0" border="0" class="row-border" id="table">
<thead>
    <th>Video ID</th>
    <th>Filename</th>
    <th>Action</th>
</thead>
<tbody>
    <tr>
    <td>1</td>
    <td>ABCD</td>
        <td><input type='button' name='deleteBtn' value='Delete' /></td>
    </tr>
</tbody>
<tfoot>
    <tr>
        <th>Video ID</th>
        <th>Filename</th>
        <th>Action</th>
    </tr>
</tfoot>
</table>

JavaScript

$('#table').DataTable( {
	responsive: true,
	dom: 'Bfrtip',
	buttons: [
		{
			extend: 'excel'
		}
	],
	"order": [[ 3, "asc" ]]
});