Is it possible to know what time an ODK form was finalized upon submission?

StackOverflow https://stackoverflow.com/questions/22931510

  •  29-06-2023
  •  | 
  •  

문제

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

도움이 되었습니까?

해결책

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)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top