mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Remove unneeded horizontal scroll bars for alert widgets Fixes #12454 * Always hide horizontal scroll bars Width of the widget_body class is set to 100% which hides them anyway, with correct css margins
28 lines
830 B
PHP
28 lines
830 B
PHP
<div class="table-responsive">
|
|
<table id="alertlog-stats_{{ $id }}" class="table table-hover table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="count">Count</th>
|
|
<th data-column-id="hostname">Device</th>
|
|
<th data-column-id="alert_rule">Alert rule</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<script>
|
|
$("#alertlog-stats_{{ $id }}").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
navigation: ! {{ $hidenavigation }},
|
|
post: function () {
|
|
return {
|
|
id: "alertlog-stats",
|
|
device_id: "",
|
|
min_severity: '{{ $min_severity }}',
|
|
time_interval: '{{ $time_interval }}'
|
|
};
|
|
},
|
|
url: "ajax_table.php"
|
|
});
|
|
</script>
|