As for version 3.13, you can now attached photos to exisitng data. Excellent. Thank you Esri.
I would like to add a watermark to the photos that has data previously entered (i.e. existing attribution info).
Here's my statement:
bottomLeftWatermark="Lat @[latitude]\nLong @[longitude]\nDateTime @[datetime:short]&size=30" bottomRightWatermark=${Defect_No_}
The Defect_No_ is the existing data.
The statement above actually works, but I can't change the size of the Defect_No_.
According to Esri's Tricks of the Trade :
Data from your form cannot be added directly in the bind::esri:parameters column. Do not attempt to include standard XLSForm functions within your watermark expression. The right way to do this is to first put together the watermark content in a separate question, and then reference that.
Because I'm working with exisiting data, I added a new field (DefectNo1) to my data to accommodate the calculateion step.
For DefectNo1: concat('Defect No:',${Defect_No_},'size=30')
bottomRightWatermark=${DefectNo1}
But this doesn't work.
Any help appreciated.