“Botão de rádio Thymeleaf” Respostas de código

Rádio de entrada de tymeleaf

<input type="checkbox" name="active" th:checked="${user.active}" />
Amused Angelfish

Botão de rádio Thymeleaf

<ul>
  <li th:each="ty : ${allTypes}">
    <input type="radio" th:field="*{type}" th:value="${ty}" />
    <label th:for="${#ids.prev('type')}" th:text="#{${'seedstarter.type.' + ty}}">Wireframe</label>
  </li>
</ul>
Vijaysinh Parmar

Respostas semelhantes a “Botão de rádio Thymeleaf”

Procure respostas de código populares por idioma

Procurar outros idiomas de código