Auto Refresh Dashboard

is there a way to auto refresh a dashboard with multiple BAQs, whenever a record on one of the dashboards is updated?

yes, but you have to customize it to do it, and depending on the baq’s being used, performance can suffer, so you’ll have to think about that. Have you worked with customization before?

Yes. Just not with any that would refresh a dashboard.

Make sure that you have the refresh all enabled on your dashboard, then you can use this code to call the refresh all command which will refresh all of the BAQ’s on the dashboard. You’ll have to figure out which form event you want to attach it to.

		MainController.AppControlPanel.HandleToolClick("RefreshAllTool", new 
		Infragistics.Win.UltraWinToolbars.ToolClickEventArgs(MainController.MainToolManager.Tools["RefreshAllTool"], null));;

Thank you very much!

Did you figure out which form event to attach it to? I am doing something similar now.
Thanks!
Nate

I usually used a button.

Hah! I did use a buttom to test the refresh event. But I would really like it to fire when one of my BAQ records is updated (or after running one of my custom actions). See my related post for more info.