Classic View -- Launch dashboard and populate a tracker filter field

Hey,

In a form I’m setting a value in the lfo context value and then launching a dashboard.

I want to place that string in a tracker filter on the dashboard.

I have the string coming into the form on a FormShown event, but the tracker dataview isn’t initialized at that point for me to insert the incoming string.

I’ve tried putting it into the text box in the form shown event and displaying the value of the text box immediately after. It’s storing the value in the text box, but the value never displays.

The dataview initialization notification doesn’t fire until I refresh the dashboard.

Has anyone done something like this? Where did you place the value assignment?

Thanks,

Joe

Thanks to @feras23 for this. After setting the text box in the form show method:

oTrans.OnRefresh();

It still doesn’t show the value passed in from the launching form but refreshes and displays the correct data in the grid.