Hi,
I'm using a time picker to help respondents to a survey enter a time. The javascript I'm using for the time picker is this:
Qualtrics.SurveyEngine.addOnReady(function()
{
var Qbd = "input[id='QR~"+this.questionId+"']";
jQuery("#" + this.questionId + " .InputText").hide();
jQuery("#appt-time").on(" change", function() {
jQuery(Qbd).val(jQuery("#appt-time").val()) ;
});
});
With this HTML code in the Rich Content Editor:
The time picker works fine, but when I try to save the input from the time picker in the embedded data and call it later on in the survey, it returns '0'. The Embedded data is set from the survey flow using piped text, like this:
${q://QID1/ChoiceTextEntryValue}
How could I store the time from the time picker in the embedded data as a string? Thanks in advance.