DataTables for device generic report

This commit is contained in:
Eric A. Miller
2014-06-07 14:37:40 -04:00
parent 9fa54f3fae
commit d32fbc744b

View File

@@ -1,4 +1,4 @@
<table class="table table-bordered table-condensed table-striped nd_floatinghead">
<table id="rg-data-table" class="table table-bordered table-condensed table-striped" width="100%" cellspacing="0">
<thead>
<tr>
[% FOREACH hdr IN headings %]
@@ -16,3 +16,11 @@
[% END %]
</tbody>
</table>
<script>
$(document).ready(function() {
$('#rg-data-table').dataTable({
"pageLength": 25
} );
} );
</script>