Put checkboxes in cells
-
Hello everybody,
I’m trying to create e little survey using Contact 7.
I would like the user to be able to choice a value from 1 to 3 for every option. In order to be able to do that, every checkbox should be placed inside a cell.
I try to explain myself better. I would like to create a table like this:
<table>
<thead>
<tr>
<th>#</th>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Option 1</td>
<td>checkbox 1</td>
<td>checkbox 2</td>
<td>checkbox 3</td>
</tr>
<tr>
<td>Option 2</td>
<td>checkbox 1</td>
<td>checkbox 2</td>
<td>checkbox 3</td>
</tr>
<tbody>
</table>(on Codepen)
Is it possible to make something similar?Thanks in advance.
- The topic ‘Put checkboxes in cells’ is closed to new replies.