Tuesday, 22 March 2016

How to iterate over list in selection box with thymeleaf + Jquery



<select th:field="*{travelId}" class="span2 form-control add-on">
<option value="NONE">----Select----</option>
<option th:each="travelDetail: ${session.travelDetailsList}"
th:value="${travelDetail}" th:text="${travelDetail}">
This will be replaced - is only used for natural templating
</option>
</select>

No comments:

Post a Comment