반응형
원하는 상황 | 특이사항 | 용법 |
if item in item_list | <div th:text="${#lists.contains(product.testList, '33')}"/> | |
checkbox | th:checked="${#lists.contains(product.selectedTemplates, '' + template.id)}" [stackoverflow.com/questions/20666635/thymeleaf-lists-contains-expression-utility-not-working] |
|
checkbox already checked | checkbox | <input type="checkbox" name="active" th:checked="${user.active}" /> |
checkbox already checked | checkbox | <input type="checkbox" name="mycheckbox" th:checked="${flag} ? 'checked'"> [stackoverflow.com/questions/29826576/thymeleaf-how-to-add-checked-attribute-to-input-conditionally] |
select and checked | select | <select class="form-control" id="categoryId" name="categoryId"> <option th:each="category: ${categories}" th:selected="${category.categoryId==product.category.categoryId}" th:text="${category.categoryName}" th:value="${category.categoryId}"></option> </select> |
반응형
'스프링, 자바' 카테고리의 다른 글
mvc 아키텍처 (0) | 2020.11.18 |
---|---|
mocMvc Controller Test (0) | 2020.11.18 |
자바 데이터 타입, 변수 그리고 배열 (0) | 2020.11.15 |
자바 소스 파일(.java)을 JVM으로 실행하는 과정 이해하기 (0) | 2020.11.15 |
클린 코드 리팩터링 공부하고 싶을때 (0) | 2020.11.06 |