-2

In my REDCap project, I have a checkboxes (multiple answers) field with numerous choices. The list of choices is rather long, and I was wondering if it were possible to break down the list of choices into two separate columns. Any input regarding this would be much appreciated. Thanks so much!

2 Answers2

0

You could split the checkbox question into two separate questions and use field embedding to have them shown side by side.

People often use tables, but Bootstrap grids work better because they're responsive, so you could have two columns for monitors, say, and one for mobile devices. Something like this:

<div class="container">
  <div class="row">
    <div class="col-md-6">{cb1}</div>
    <div class="col-md-6">{cb2}</div>
  </div>
</div>

(Nb. remove the line breaks from the HTML above in the Online Designer)

0

There is a @COLUMNS action tag in REDCap available that allows you to separate your choices into columns. The syntax for the @COLUMNS action tag is as follows:

@COLUMNS=# of columns

e.g. @COLUMNS=5 would separate the choices into five separate columns.