Hi,
I am using a custom connector and am able to successfully pull data using this connector.
I have difficulty clearing the values on the canvas app using the Reset function.
I have tried to set a variable for a field as follows in OnSelect
Set (
varVehicle,
ALFA_MILES.GetLoanInfo({loanid: LoanTxt.Text}).ModelDescription
);
And then referencing Default = varvehicle.
Then I have a 'Cancel' button that will clear the fields using the formula
Set(
varDisReset,
true
);
Set(
varDisReset,
false
);
Set(
varVehicle, Blank());