Hello,
I have a gallery that has a collection as data source. And inside this gallery there are two input text boxes (single and multi)

This collection allows to add dynamically task (someone fill one task, click ADD more and he can add more tasks).
But collection is only up to the moment someone close the app.
When someone reload app he does not see this tasks.
Code:
Gallery2 Items:
colNumberedGUIDS
OnVisible screen:
If(CountRows(colNumberedGUIDS) = 0,ClearCollect( colNumberedGUIDS, {Value:GUID(),RowNumber:1}))
Add task:
Collect(colNumberedGUIDS,
{Value:GUID(), RowNumber:CountRows(colNumberedGUIDS) + 1}
)
The idea for this solution is to allow someone to add tasks whole day review it and then save it at the end of the date.
I have no idea what to do - I want user to fill the task all day, but then when they reload app they won't see it since gallery data source is already a collection (which on the other hand does not include data from input boxes - weird solution).
Does any of you have idea what to do?
Do I need another gallery with a sharepoint list data source?
Or can it be somehow done.
To sum it up from user perspective.
1. There is a gallery with two input boxes (Name, description).
I feel those tasks and click Save.
2. I come back later to add another task (my previous task is visible). I click add task and another task in gallery is shown.
3. I click save and leave up.
4. At the end of the day I come and click finish job and all records are saved once again, but i lose access to this screen, and it's archived.
Is this achievable?