pro Rollei - Datatable resp.
by Petr Haluza
HTML
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<link rel="stylesheet" href="//cdn.datatables.net/1.10.1/css/jquery.dataTables.css">
<script src="//cdn.datatables.net/1.10.1/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/responsive/1.0.0/css/dataTables.responsive.css">
<script src="//cdn.datatables.net/responsive/1.0.0/js/dataTables.responsive.js"></script>
<table id="HAPdata" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th data-priority="2">Model</th>
<th>Čip (MPix)</th>
<th>Úhel záběru</th>
<th>Změna úhlu záběru</th>
<th>Stabilizace (digitální)</th>
<th>Nahrávání při nabíjení</th>
<th>Dálkové ovládání</th>
<th>Wifi</th>
<th>Bluetooth</th>
<th>Streamování přes Wifi</th>
<th data-priority="1">Typ baterie</th>
</tr>
</thead>
<!--tfoot>
<tr>
<td>Model</td>
..
</tr>
</tfoot*-->
<tbody>
<tr>
<td>AC400</td>
<td>12</td>
<td>170</td>
<td>Ne</td>
<td>Ne</td>
<td>Ano</td>
<td>Ano</td>
<td>Ano</td>
<td>Ano</td>
<td>Ne</td>
<td>x123</td>
</tr>
<tr>
<td>AC432</td>
<td>12</td>
<td>160</td>
<td>Ne</td>
<td>Ano</td>
<td>Ano</td>
<td>Ne</td>
<td>Ano</td>
<td>Ano</td>
<td>Ne</td>
<td>x100</td>
</tr>
</tbody>
</table>
JavaScript
$(document).ready(function() {
$('#HAPdata').DataTable( {
responsive: true,
columnDefs: [
{ responsivePriority: 2, targets: -1 }
]
} );
} );