Hello,
I would like to ask regarding my PATCH function in my canvas app. I created SharePoint list database where I want to store records from canvas app. The tables are basically in sigle line of text format.
I use following patch for my Submit button:
Patch
(SharepointTable;
Defaults (SharepointTable);
{
Country: drpCountryName;
BranchID: DrpBranchID;
BranchManagerID: txtBranchManager.Text
}
);
Navigate(anotherscreen)
then I recieved error that my Patch is not valid.
Second technical issue is with Radiobutton which I use for Yes/No option. I do not know how to make functional this buttons and save chosen choice to my SP list and if No is selected then I want to show other screen with additional comment section (already created). If is better to use another buttons instead of radio button then give me a hint, please.
Thanks for advice!