JQuery
ダイアログを使用して<form:form>
、クエリから追加する特定のレコードを識別/選択するために表示しています。submit
テーブル内のすべてのレコードには、選択したレコードを追加するためのフォームのトリガーとしてボタンが含まれている必要があります。以下のコードは、コードの構造を示しています。
<form:form action="POST" action="form_action" modelAttribute="form">
<div><form:hidden path="selectedDate" />
<!-- Other components relating to the parent record -->
</div>
<div>
<!-- The detail of the parent -->
<table>
<thead>
<th>Name</th>
<th></th>
</thead>
<tbody>
<c:forEach items="${items}" var="itr">
<tr>
<td>${itr.name}</td>
<td>
<input type="submit" value="Select" name="${itr.id}" />
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</form:form>
id
選択したレコードを示すポスト パラメータを取得する方法はありますか?