I have a BAQ in a dashboard. I would like the dashboard to automatically refresh the BAQ list when I exit the field. I currently have to Click the Refresh button and have been asked to have the list automatically refresh once a user enters the parameter in the box.
maybe add event for AfterFieldChange on the proper dataview/field and call oTrans.Refresh();
When I try to add AfterFieldChange the Table nor the Field I need is not available for selection? Do I need to make them available somehow?
Okay, I just added the After Field Change Manually. How do I tell it to refresh the Data View?
I have this for my Data View
private EpiDataView edvV_GS_Quotes_1View;
I need it to refresh based upon me entering a QuoteNum.
private void numQuoteDtl_QuoteNum_Leave(object sender, System.EventArgs args)
{
QuoteRefNum.Value = numQuoteDtl_QuoteNum.Value;
}
You could do a subscribe and publish. When the epiDataElement of the quote changes it will automagicly run the BAQ.