Files

36 lines
920 B
PHP
Raw Permalink Normal View History

2007-04-03 14:10:23 +00:00
<?php
2015-07-13 20:10:26 +02:00
$pagetitle[] = 'Customers';
2011-10-18 14:41:19 +00:00
2015-08-11 10:38:25 +00:00
?>
<div class="table-responsive">
<table id="customers" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="port_descr_descr" data-order="asc">Customer</th>
<th data-column-id="device_id">Device</th>
<th data-column-id="ifDescr">Interface</th>
<th data-column-id="port_descr_speed">Speed</th>
<th data-column-id="port_descr_circuit">Circuit</th>
<th data-column-id="port_descr_notes">Notes</th>
</tr>
</thead>
</table>
</div>
<script>
var grid = $("#customers").bootgrid({
ajax: true,
rowCount: [50, 100, 250, -1],
2015-08-11 10:38:25 +00:00
post: function ()
{
return {
id: "customers",
};
},
2016-06-15 12:58:23 +00:00
url: "ajax_table.php"
2015-08-11 10:38:25 +00:00
});
</script>