auto refresh dashboard

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
w.saeed
User
Posts: 10

auto refresh dashboard

Post by w.saeed »

if its possible to add auto refresh dashbard to display live date


MichaelG
User
Posts: 1160

Post by MichaelG »

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

Post Reply