Hi everyone, I am trying to bind the add picture control with the attachment control for files, but the thing is that when I try to add a picture through the add picture control, the image showed is the sample image, not the current one added.
This is my Image control code on "Image":
If(
IsEmpty(colImage),
SampleImage,
Last(colImage).AbsoluteUri
)
This is my code on the Add picture control in "OnChange":
Set(
varImage,
GUID()
);
Collect(
colImage,
{
Nombre: varImage & ".jpg",
Id: varImage & ".jpg",
AbsoluteUri: 'Foto Empleado'.Image
}
)
"Foto Empleado" is my Image Control's name
I have also an attachment card where I am showing the collection by just adding 'colImage' in "Items".

Report
All responses (
Answers (