Use datatables in USB products.

This commit is contained in:
2019-11-17 22:26:31 +00:00
parent 4083d00f51
commit 768542a8b7

View File

@@ -33,7 +33,7 @@
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
}
<table class="table">
<table class="table" id="tblProducts">
<thead>
<tr>
<th>
@@ -63,4 +63,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() {
$('#tblProducts').DataTable();
} );
</script>
}