Skip to content

Instantly share code, notes, and snippets.

@A-pZ
Created February 4, 2015 05:46
Show Gist options
  • Save A-pZ/24e539e988bcbe4b2249 to your computer and use it in GitHub Desktop.
Save A-pZ/24e539e988bcbe4b2249 to your computer and use it in GitHub Desktop.
Thymeleafでセレクトボックスを生成する場合…
<!-- なげえええええええ -->
<select id="priority" class="form-control" name="vo.priority" th:remove="all-but-first">
<option th:each="priorities : ${beans.master.getValues('priority')}" th:value="${priorities.key}" th:selected="${priorities == vo.priority}" th:inline="text">[[${priorities.value}]]</option>
........
</select>
@A-pZ
Copy link
Author

A-pZ commented Feb 4, 2015

SpringMVC使えばもっと簡潔に書けます、と気づかれると泣きます。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment