Disable page refresh on health sensors pages, autorefresh most tables (#9386)

* Disable page refresh on health sensors pages
Refresh all bootgrid tables every 5 minutes

* Update legacy_index.php

* Update librenmsv1.blade.php
This commit is contained in:
Tony Murray
2018-11-08 16:29:20 -06:00
committed by Neil Lathwood
parent 518e5f06d3
commit f439eb4f1d
4 changed files with 13 additions and 3 deletions

View File

@@ -290,3 +290,11 @@ function refresh_oxidized_node(device_hostname){
}
});
}
$(document).ready(function () {
setInterval(function () {
$('.bootgrid-table').each(function() {
$(this).bootgrid('reload');
});
}, 300000);
});