make subnet utilization datatable initial order the same as sql returned order

This commit is contained in:
Eric A. Miller
2014-02-25 21:57:42 -05:00
parent b5db95e951
commit 4c9e18a8a0

View File

@@ -27,6 +27,8 @@
<script type="text/javascript">
$(document).ready(function() {
$('#data-table').dataTable();
$('#data-table').dataTable( {
"order": [[ 3, "asc" ]]
} );
} );
</script>