I am trying to customize photo names for a survey application. I have photos set to multiline and have the bind:esri:parameters set as below:
I keep getting photo names like "photo-20250929-193046.jpg".
What am I missing??
Solved! Go to Solution.
Not sure other than the underscore, but this was working on a test in Connect:
fileName=concat(${StreetAddress},"_",format-date(now(),"%y%m%d%H%M%S"))
apparently you can't have spaces in the file name?
Not sure other than the underscore, but this was working on a test in Connect:
fileName=concat(${StreetAddress},"_",format-date(now(),"%y%m%d%H%M%S"))
apparently you can't have spaces in the file name?
That sounds right tbh. I'm willing to be special characters are also a no-go.
That's it! Thanks so much!!