Perguntas com a marcação «thymeleaf»

132
Como fazer if-else no Thymeleaf?

Qual é a melhor maneira de fazer um simples if- elseno Thymeleaf? Quero alcançar no Thymeleaf o mesmo efeito que <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something...

125
usando o atributo data- * com thymeleaf

Posso definir o atributo data- * com thymeleaf? Como entendi na documentação do thymeleaf, tentei: <div th:data-el_id="${element.getId()}"> <!-- doesn't work --> <div data-th-el_id="${element.getId()}"> <!-- doesn't work