Hello,
so I am building an App. In the beginning of the app, I set the variable processRecord and assign it a record from a table.
Throughout the app, I update the table with the Patch function (Patch(processTable, processRecord, { processStatus: "Done" } ). Still the processRecord will show the old value for processStatus "Ongoing".
But the changes I do are not reflected in the processRecord. Is this a static variable? (meaning it saves the current values of the record, rather just being a link to the record)
And is there a way to refresh it? Rerfesh(processRecord) and Refresh (processTable) are not working.
Thanks in advance!