I've been wanting a feature request for a switch to disable the auto-refresh either on the page or in the config. This could also include customization of the refresh interval.
Hacking my own feature request:
Instead of pausing the refresh every time I used the page, I created the little script below to disable the auto-refresh automatically when the page is loaded. This uses the UI Skinning feature. The script is placed in /etc/csf/csf.footer and will be included in each of the UI pages before the closing </body> tag.
Code: Select all
<script>
// Pause the CSFrefreshtimer onload
// to disable the auto-refresh default
CSFpausetimer();
</script>