function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SGulSGul 

Scheduling Dashboard Refresh every 2 minutes.

Hi, We have a requirement where we need to get dashboard refreshed every two minutes automatically. If anyone has pointers related to same, please let me know. Thanks.

SGulSGul

Thanks Bob for your quick reply. Right now I am not able to open your blog in company's premises because of firewall restrictions. Will surely look into it once I am able to access the same. Thanks.

SGulSGul

Is it possible to override Refresh button of Dashboard?

I got following code from internet related to messages and alert, but the problem with underlying code is we can use max 3 reports to be displayed on that section, not more than that.

 

<html>
<body>
<script>
var run;
function refresh()
{
var dashboardButton = document.getElementById("db_ref_btn");
dashboardButton.click()
}
run = setInterval(refresh,60000);
</script>
</body>
</html>