Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Invalid
-
5.3.3
-
None
Description
when adding a zone (HiddenFieldLocationRules == RelativeElementPosition.INSIDE) around checkboxes in a form
... <t:zone t:id="zone"> <div t:id="checkBox1"/><t:label for="checkBox1"/> </t:zone> ...
the hidden-input tag will be rendered after the first child element
<div id="zone" class="t-zone"> <input type="checkbox" name="checkBox1_137352f1806" id="checkBox1_6" disabled="disabled"><label class="inline" for="noteWorkshop_6">Service:</label> <input type="hidden" name="t:formdata" value="..."> <label>label</label> </div>
which breaks the css selekor
input[type="checkbox"][disabled] + label {
...
}