Hi, this is my setup at the moment :
There is a Camera Control which when it's clicked sends a picture into a variable,
then an Image Control shows the image contained inside this variable
and there is a button that sends the image into a SharePoint Document Library with a Flow.
I would like to set the button.DisplayMode property to something like this :
If(IsEmpty(imageCapturedImage); Disabled; Edit)
But it doesn't work, my goal is to disable the button if no pictures have been selected yet.
Thanks in advance for any suggestion, ProNewbie
Thanks to both for the answers, it worked using IsBlank() instead of IsEmpty().
ProNewbie
Hi @Anonymous ,
How do you save the Captured picture into a variable within your app? Could you please share a bit more about the formula?
Actually, it is not necessary to detect if the Image control is empty. As an alternative solution, you could consider detect if the variable which stores your captured image is blank.
I have made a test on my side, please take a try with the following workaround:
Set the OnSelect property of the Camera control to following:
Set(CapturedPic, Camera1.Photo)
Set the Image property of the Image control to following:
CapturedPic
Set the DisplayMode property of the Button control to following:
If( IsBlank(CapturedPic), DisplayMode.Disabled, DisplayMode.Edit )
Set the OnSelect property of the Button control to following:
'YourFlowName'.Run(...); /* <-- Fire a flow, pass the captured picture to your flow */ Set(CapturedPic, Blank()) /* <-- Reset the CapturedPic variable after your fire your flow */
Please consider take a try with above solution, then check if the issue is solved.
Best regards,
Use IsBlank rather than IsEmpty, which is for tables or collections.
If(IsBlank(Image1.Image),DisplayMode.Disabled, DisplayMode.Edit)
MS.Ragavendar
10
LC-26081402-0
6
EE-04041031-0
4