Hi, having problems with an online/offline app. User saves to a collection, giving them them the ability to go back in there and edit the entry before patching to sharepoint list. The problem i am having, is the sometimes the user goes back into the app and the collection is gone. It might be there for a few days or a few hours. It has happened to 5 users in the last few days. Any idea what may be causing this or how to resolve the issue? The user may have up to 10 jobs in the collection pending submission
Collect(
KBLCollection,
{
Submitted:false,
Title:Employee_ED.Selected.Value});
SaveData(KBLCollection, "KBLCollectKeep")
When user goes to amend the job, i have a save button that patches the amended data to
Patch(
KBLCollection,
Title:Employee_ED.Selected.Value});
SaveData(KBLCollection, "KBLCollectKeep");
On App startup i have
LoadData(KBLCollection, "KBLCollectKeep");