I have an app with several add media buttons that create a collection and then adds that collection to the attachments but none of the images are going to the attachments. Can anybody see what I am doing wrong here?
Add Media button OnSelect =
UpdateContext({varPID: GUID()});
Collect(
colImage,
{
Value: UploadedImage1.Image,
DisplayName: "Sort 1-"&Text(
Now(),
"[$-en]hhmmss"
) & ".jpg",
Id: varPID,
AbsoluteUri: ""
}
)
I got this form WarrenBelz.
The attachments data card has DataField = "{Attachments}" - Default = ThisItem.Attachments - Update = DataCardValue79.Attachments
DataCardValue79 Items = colImage
There are no errors and the form is submitted and will add all items except the attachments. I can't figure out what is wrong.
Thanks