Skip to content Skip to sidebar Skip to footer

Thymeleaf - Click Able Url (web Link) In Table

(I have looked on google, here.. and havent been able to find the answer that could help me). Goal : Website to be entered as a click able web link - Link is retrieved from DB as a

Solution 1:

You can use any type of tag with Thymeleaf. Is this what you want?

<td>
    <a th:href="${sps.website}" th:text="${sps.website}" target="_blank" />
</td>

Post a Comment for "Thymeleaf - Click Able Url (web Link) In Table"