0

I'm creating a form that collects time specific information. Is it possible to find out what time the information was collected?

Alexander Suraphel
  • 10,103
  • 10
  • 55
  • 90

1 Answers1

2

You can add a hidden or pre-loaded fields to your form with jr:preload and jr:preloadParams first define your instance

<instance>
   <market id="mkt">
     <colectionTime/>
   </market>
 </instance>

then bind it like this

<bind nodeset="/market/collectionTime" type="time" jr:preload="timestamp" jr:preloadParams="end"/> 

More Information Property values (http://opendatakit.org/help/form-design/examples/#preload_params)

soso
  • 197
  • 3
  • 10