Hi, I was having an issue with using toggle on a checkbox. I’m trying to have a checkbox labeled other that when chosen creates a text field to specify what other is in this case. The following segmet is what have in my form.
<table class="baseline-aligned">
<table><tr><td>
...
<obs conceptId="concept_id" answerConceptId="other_id" answerCode="module.form.other.label" style="checkbox" toggle="specifyOther" />
</td></tr></table>
</table>
<div id ="specifyOther">
<table class="baseline-aligned">
<obs conceptId="specifyOther_id" labelCode="module.form.specifyOther.label" style="textarea" />
</table>
</div>
Checking and unchecking the other checkbox does not appear to change whether the other text field is displayed. Does anyone have an idea on why this is?