Why can't I leave blank the labels that are shown on a checkbox field?

  • EliteInsites
    Asked on May 17, 2015 at 4:04 PM

     If you have multiple options and try and make the option name blank, the checkbox disappears and won't let you edit it again.  It also appears it won't allow you to have a blank checkbox, which is dumb.

  • raul
    Replied on May 17, 2015 at 4:35 PM

    I presume that you're referring to the label that is shown on each checkbox, is that correct?
    If so, the reason why you cannot leave them blank is because the label is used to let you know which options were checked.

    If you don't want them to be visible in your form, you can hide them using custom CSS code. For this form: http://www.jotformpro.com/form/51365821556963 you can use the following code:

    #cid_3 > div > span > label {
       display: none;
    }

    This would be the result:

    Why cant I leave blank the labels that are shown on a checkbox field? Image 1 Screenshot 20

    Hope this helps.

    Let us know if you need further assistance.