• I have a complex form with 40 entries in it. It reports the error: Multiple form controls are in a single label element. I am familiar with this error, but I just cannot see why it is occurring. Using the split half technique, I have pinned it down to two checkbox elements that occur after each other.

    What I have done below is created a new form with just two checkbox items in there. I have not added any code, this is just from creating the form. This too shows the warning message: Multiple form controls are in a single label element.

    <div class=”container”>
    <div class=”row”>
    <div class=”columns one-half”>
    <div class=”field”><label for=””></label>[checkbox support-needed use_label_element “Option 1” “Option 2” “Option 3”]
    <p class=”info-tip”></p>
    </div>
    </div>
    </div>
    </div>
    <div class=”container”>
    <div class=”row”>
    <div class=”columns one-half”>
    <div class=”field”><label for=””></label>[checkbox targeted-support use_label_element “Option 4” “Option 5” “Option 6”]
    <p class=”info-tip”></p>
    </div>
    </div>
    </div>
    </div>

    Why is that error coming up?

  • You must be logged in to reply to this topic.