One of the greatest features of SalesForce.com is its Dashboards.
If you used Dashboards before, most likely you are familiar with the feeling that something in the data seems fishy. But then you realize it: “Oh, I need to refresh it!”
Well, NO MORE!
So how to Auto Refresh Your Homepage Dashboards?
This TIP will help keep your Dashboards refreshing with the up to date information.
- Go to the setup menu
- Click customize, Home, Homepage Components
- Edit Messages and Alert
- insert the below code anywhere in the data entry box:
<script type=”text/javascript”> var run; function sa_refresh() { var dashboardButton = document.getElementById(“db_ref_btn”); dashboardButton.click() } setTimeout(sa_refresh, 5000); //Runs the Refresh function every 5 minutes using Milliseconds (1minute = 60000) run = setInterval(sa_refresh,300000); </script>
- That’s it! Your Homepage Dashboards will refresh every time you click the home tab or every 5 minutes
Leave a Reply