私は新しい Thymeleaf 開発者です (Spring-Boot 2.1.5 環境)。入力からのリストに対するフィルタリングを実装したいと考えています。入力にクライアントの名前を入力すると、テーブルに表示されます(送信ボタンなし)。
<form th:action="@{/clientslistbypage}" method="get" th:object="${Clients}" class="form-inline" >
<input type="text" name="client" th:value="${client}" id="clientSearch" >
<!-- <input type="submit" name="clients" th:value="Search">-->
</form>
Projection と Collection 関数を試しましたが、入力値を Collection 式に動的に割り当てる方法がわかりません。(${Clients.?[firstName >='here i want to insert the value of the Searche Input']})
<tr th:each = "c: ${Clients.?[firstName >='']}" >
<td th:text = "${c.id}"></td>
<td th:text = "${c.firstName}"></td>
<td th:text = "${c.LAST_NAME} "></td>
</tr>
DANDELION を試してみましたが、残念ながら Spring-Boot 2.1.5 では動作しません。
提案、チュートリアル、または例は大歓迎です