Hi,
I tried to add some controls dynamicaly in PowerApps and save all of the information into a Sharepoint list column. The issue is that the PowerApps form doesn't display the content after saving.
This is the code for "Salveaza" button:
ClearCollect(CTCollection,
ForAll(
Gallery2.AllItems,
{
comb:TextInput1.Text & TextInput3.Text
}
)
);
Set(
Comb,
Concat(
CTCollection, comb & ";", " ")
);
Patch(EchipeDin,
Defaults(EchipeDin),
{
Info:Comb
}
);
Do you have any suggestion how can I display the all the content based on dynamically controls?