I see many posts asking about "the patching function" to update a SP list, not sure what that is, I'm after just a simple "Update" function that I can't seem to get working.
I have a simple 'toggle' button on my app that if toggled, I want a field in the list to be updated with some text.
My list is called "ApprovalList" and there is a text column called "ISO_Approve"
When the button is toggled, it merely needs to update the corresponding SP List item's ISO_Approve value to "Approved".
On the toggle button's "OnChange" property, I have the following code...
Update(ApprovalList.ISO_Approve, "Approved")
I've also tried, among many other iterations...
Update(ISO_Approve.Text, "Approved")
I've also tried using the Set and Patch functions and can't get it working, any clues?