如何在orbeon形式中以水平方式设置单选按钮?

时间:2017-05-31 11:45:43

标签: orbeon xforms

我想制作一份这样的调查表。

enter image description here

2 个答案:

答案 0 :(得分:0)

只需使用表格

<table class="my-table" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <th>Lorem.</th>
    <th>Porro.</th>
    <th>Voluptatibus.</th>
  </tr>
  <tr>
    <td>some 1</td>
    <td><input type="radio" /></td>
    <td><input type="radio" /></td>
  </tr>
  <tr>
    <td>some 2</td>
    <td><input type="radio" /></td>
    <td><input type="radio" /></td>
  </tr>
</table>

css用于在表格单元格的中心对齐无线电(输入)

.my-table td{
  text-align: center;
}
.my-table input[type=radio]{
  display: inline;
}

答案 1 :(得分:0)

我可以看到在这种情况下如何在行上排列问题和列中的答案是有意义的,但是现在只能使用表单生成器创建这个确切的布局。目前,如果使用表单生成器,则需要为每个问题重复复选框的值,如下所示:

Questions, each with their answers