Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/03/2012, 05:08
Avatar de luna690
luna690
 
Fecha de Ingreso: marzo-2012
Ubicación: Barcelona
Mensajes: 61
Antigüedad: 12 años, 10 meses
Puntos: 3
Thymeleaf th:if th:unless

Hola,

Estoy utilizando Thymeleaf con Spring en el lenguaje JAVA, para hacer un formulario.
El caso es que no entiendo muy bien como funciona, ya que he intentado poner una imagen dependiendo de un boleano que le pregunto al th:if y otra imagen en el th:unless. Pero no me sale.

Lo veis bien?

Código:
<td class="tdIco">
<img th:if="${site.isGoogleFeed()}" th:src="@{/images/ok.png}" src="/images/ok.png" alt="GoogleFeed"></img>
<img th:unless="${site.isGoogleFeed()}" th:src="@{/images/del.png}" src="/images/del.png" alt="GoogleFeed"></img>
</td>