I have two forms FormA (SalesTable) and FormB (SalesAvailableDlvDates).
From FormA, I will click a button to open up FormB.
Then I will click another button in FormB which will bring me back to FormA.
What I want to happen is, when I click the button in FormB I would like to refresh FormA as I get back to that form.
Is that possible?
This is the button in FormB where when I click it, I'll go back to FormA:
[FormControlEventHandler(formControlStr(SalesAvailableDlvDates, TransferToConfirmedButton), FormControlEventType::Clicked)]
public static void TransferToConfirmedButton_OnClicked(FormControl sender, FormControlEventArgs e)
In my example,
On clicking on the OK button on the LogisticsLocationDefault (FormB) form, the data on the LogisticsPostalAddressGrid (FormA) will be refreshed.
Please find an example for the form LogisticsLocationDefault below.