Missing closing UL tag for Form Collapse in the source codes

  • Profile Image
    dorydesigns
    Asked on May 01, 2015 at 10:14 AM

    In the form we open with  

    <div class="form-all">
        <ul class="form-section page-section">

    Then when adding a collapsable section (referred to as form collapse in widgets) a new UL (<ul class="form-section-closed">) is added without closing the first UL 

    In the end of the form there is </ul>
      </div>

    All together it looks like
    <div class="form-all">
        <ul class="form-section page-section">
            <li></li>
        <ul class="form-section-closed">
            <li></li>
        </ul>
    </div>

    But should look like this:
    <div class="form-all">
        <ul class="form-section page-section">
            <li></li>
        </ul>
        <ul class="form-section-closed">
            <li></li>
        </ul>
    </div>

  • Profile Image
    Welvin
    Answered on May 01, 2015 at 10:17 AM

    Hi,

    If you could share us the URL where the form source code is currently embedded, as well as the form URL, we would be happy to re-check this for you.

    Thanks

  • Profile Image
    dorydesigns
    Answered on May 01, 2015 at 10:29 AM

    The form is not for public usage, and we would prefer not to share this information right now, however if you create a form and insert a few different fields, then insert the form collapse widget, andview the source you will see what is referenced by the above.

    Your interface uses the UL LI tags to construct the form elements, and each item added creates a new LI with (so far) the exception of the form collapse widget - which uses it's own UL LI constructors, but does not get added using a leading LI.

     

  • Profile Image
    Welvin
    Answered on May 01, 2015 at 12:26 PM

    Hi,

    Thank you for the clarification. I just saw it. 

    I have now forwarded this thread to our developers. This doesn't affect the form functions, but I think the HTML is incomplete.

    Thank you.