Use datatable for USB vendors.

This commit is contained in:
2019-11-17 22:37:43 +00:00
parent 1e5f65104b
commit 85c34c640a

View File

@@ -33,7 +33,8 @@
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
}
<table class="table">
USB vendors
<table class="table" id="tblVendors">
<thead>
<tr>
<th>
@@ -61,4 +62,13 @@
</tr>
}
</tbody>
</table>
</table>
@section scripts{
<script crossorigin="anonymous" integrity="sha256-L4cf7m/cgC51e7BFPxQcKZcXryzSju7VYBKJLOKPHvQ=" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script language="javascript">
$(document).ready(function() {
$('#tblVendors').DataTable();
} );
</script>
}