Timer widget have no data on form submission

  • alka17690
    Asked on August 23, 2017 at 4:48 PM

    I had added the timer, however the data is not getting transferred to the submission

    https://www.jotform.com/submissions/60736980787270

     

    Seems I am missing a step.

  • jonathan
    Replied on August 23, 2017 at 4:58 PM

    I was able to reproduce the issue when I test your form. My test submission doesn't have data in the Timer widget.

    Upon further test, I was able to identify the caused of issue. It was the Timer widget being hidden in the form.

    Timer widget have no data on form submission Image 1 Screenshot 20

    If you unhide the widget, there should be data on form submission.

     

     

     

     

  • jonathan
    Replied on August 23, 2017 at 5:03 PM

    Should you prefer the Timer hidden, you can use custom injected CSS code instead to have it hidden. 

    Try this CSS codes:

     

    #id_130{

    visibility : hidden;

    height : 1px;

    }

     

    This should give you time data while the Timer is still hidden on the form.