Is there any way to tell Thymeleaf add parameters to the tag instead of overriding them?
Example:
<div class="a" th:class=${x ? 'b' : 'c'}>
Should arise either
<div class="ab">
or
<div class="ac">
Hello
java spring spring-mvc thymeleaf
Thomas Schmidt Feb 20 '16 at 22:51 2016-02-20 22:51
source share