Lukas W.
Well-known member
Got the following markup:
I tried to put an explain text/label onto the nested select box, but both hint and explain get ignored, so I attempted to put it in with <xf:html> manually. Unfortunately, the HTML text gets put at the very top of the nesting, above the select box, for some reason.
Hint and label on the nested checkbox work just fine.
Code:
<xf:checkboxrow>
<xf:option name="my_option"
label="My Label"
hint="My Hint">
<xf:select name="my_nested_select"
hint="My nested select hint"
explain="My nested select explain">
<xf:option>Some Option</xf:option>
</xf:select>
<xf:html>
<dfn class="inputChoices-explain">
My nested select hint
</dfn>
</xf:html>
<xf:checkbox>
<xf:option name="my_nested_checkbox"
value="1"
label="My nested checkbox"
hint="My nested checkbox hint">
</xf:option>
</xf:checkbox>
</xf:option>
</xf:checkboxrow>
I tried to put an explain text/label onto the nested select box, but both hint and explain get ignored, so I attempted to put it in with <xf:html> manually. Unfortunately, the HTML text gets put at the very top of the nesting, above the select box, for some reason.
Hint and label on the nested checkbox work just fine.