Datatables entries bug
HTML
<link rel="stylesheet" href="https://cdn.datatables.net/u/dt/dt-1.10.12/datatables.min.css">
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<table id="datatable">
<thead>
<th>
Col 1
</th>
<th>
Col 2
</th>
</thead>
<tbody>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value3
</td>
<td>
Value4
</td>
</tr>
<tr>
<td>
Value5
</td>
<td>
Value6
</td>
</tr>
<tr>
<td>
Value7
</td>
<td>
Value8
</td>
</tr>
<tr>
<td>
Value9
</td>
<td>
Value10
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
Value2
</td>
</tr>
<tr>
<td>
Value1
</td>
<td>
...
JavaScript
$('#datatable').DataTable({
order: [
[0, 'desc']
],
scrollY: 350,
paging: false,
searching: true
});