Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions en/forms.texy
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,23 @@ You can render forms manually for better control over the generated code. Place
<td>{input name}</td>
</tr>

<!--If you need manualy render radiolist -->
<tr>
<th>{label radioList /}</th>
<td>
<table>
<tr>
<td>
{input radioList:itemKey}
</td>
<td>
{input radioList:itemKeyTwo}
</td>
</tr>
</table>
</td>
</tr>

...

</table>
Expand Down