Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

thymeleaf table for each


    <table border="1">
        <tr style="font-size: 13">
            <td>ID</td>
            <td>Name</td>
        </tr>
        <tr th:each="count :  ${id}">
            <td><p th:text="${count}" /></td>       
            <td><p th:text="${name}" /></td>        

        </tr>
    </table>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #thymeleaf #table
ADD COMMENT
Topic
Name
4+6 =