Forum Discussion

4 Replies

Replies have been turned off for this discussion
  • You can add something like this to the dashboard script. That's probably the easiest way.

    dashboard.on('initialized',function(d) {
    	alert('alert goes here');
    });

     

  • sneak's avatar
    sneak
    Cloud Apps

    Try adding a simple JavaScript snippet in the dashboard initialization event:

    dashboard.on('initialized', function () {
        alert('Updates in Progress');
    });
    

    But keep in mind, while the alert is popped up, the actual loading may take a backseat. I haven’t tested this particular use case, but this should give you a starting point. Let me know how it goes! 

    • sneak's avatar
      sneak
      Cloud Apps

      Oops, didn’t see others had posted since I started a draft 😜