Is it possible to give information submit from within one using thymeleaf?
Example:
<form method="post" th:action="@{/receive}" th:object="${objeto}" >
<input type="text" th:field="*{nome}"/>
<table>
<thead>
<tr>
<th>Produto</th>
</tr>
</thead>
<tbody>
<tr>
<td>palavra de testes</td>
</tr>
</tbody>
</table>
<button type="submit">Enviar dados</button>
</form>
In this case when I click the submit button, in my object only the name attribute will be populated, but in that same object I have an attribute of type List that I would like to populate from the values from within < table & gt ;. Is it possible?