How can i ensure one check box is selected per row?

  • justinkodurand
    Asked on May 26, 2017 at 11:56 AM

    In my form questions 2 and 3 can only have one checks per row. Is there a way to ensure only one check can be selected?

     

    Also is there away to move the hover text to the side as it is covering some of the check options, other then adjusting the table size.

     

    Thank you

  • Nik_C
    Replied on May 26, 2017 at 1:11 PM

    Maybe the best way would be to change those fields to radio buttons instead of checkboxes:

    How can i ensure one check box is selected per row? Image 1 Screenshot 30

    That way your users will be able to select only one field per row:

    How can i ensure one check box is selected per row? Image 2 Screenshot 41

    Could that work for you by any chance?

    Please let us know.

    Thank you!

  • justinkodurand
    Replied on May 27, 2017 at 2:53 AM

    Thanks for reply. Would have preferred consistency throughout i.e either or check boxes or all radio buttons but since question 1 allows for multiple replies per rows and the the other dont I am overall happy with the fix.

    However is there any solution for 

    "Also is there away to move the hover text to the side as it is covering some of the check options?"

     

    Thanks

  • Nik_C
    Replied on May 27, 2017 at 3:39 AM

    To position the hover text properly, please copy and paste the below CSS to your Custom CSS Field:

    #id_6 div.form-description {

        right : -80px!important;

    }

    #id_7 div.form-description {

        right : -140px!important;

    }

    #id_8 div.form-description {

        right : -80px!important;

    }

    Please let us know if you have any further questions.

    Thank you!

  • justinkodurand
    Replied on May 27, 2017 at 3:43 AM

    Works perfectly.

    Thanks