if its possible to add auto refresh dashbard to display live date
1 Like
You can set a timer to click the refresh button for the dashboard items in the Startup Script. For example:
setInterval(function() {
$('[data-card-widget="card-refresh"]').click();
},
60000); // Refresh every 1 minute
1 Like