Matrix Version: 6.21.2
Afternoon, looking for some help to get my date picker on the same row but keeping the drop-down functionality. I have build this before on another form but it was free-text and I no longer want free text. What am I missing here.
Old code for free text:
<div class="row">
<div class="form-group col-lg-6">
<legend class="sq-form-question-title date">Key date</legend>
<div class="sub-row">
<div class="col-lg-3">
<label for="q101753_q1_value_d">Day</label><input type="text" name="q101753_q4_value[d]" value="" size="2" maxlength="2" onfocus="this.select()" id="q101753_q4_value_d" class="form-control input-lg">
</div>
<div class="col-lg-3">
<label for="q101753_q4_value_m">Month</label><input type="text" name="q101753_q4_value[m]" value="" size="2" maxlength="2" onfocus="this.select()" id="q101753_q4_value_m" class="form-control input-lg">
</div>
<div class="col-lg-3">
<label for="q101753_q4_value_y">Year</label><input type="text" name="q101753_q4_value[y]" value="" size="4" maxlength="4" onfocus="this.select()" id="q101753_q4_value_y" class="form-control input-lg">
</div>
</div>
</div>
</div>
New code with date fields on separate rows:
<div class="form-group row">
<div class="col-lg-6">
<div class="sub-row">
<div class="col-lg-3">
%question_label_225853_q1%
<!-- Key date -->
%question_field_225853_q1%
</div>
</div>
</div>
</div>
Thanks
Innes