<!DOCTYPE html>
<div xmlns:th="http://www.thymeleaf.org">
<table class="treebody" th:object="${FormCreatureClass}">
<tr>
<td class="top left">
<div th:each="tree : *{result}" th:object="${tree}">
<div th:attr="class=${tree.divclass}">
<div th:attr="name=${tree.leaf} + '_' + ${tree.rute}">
<img class="ev_Expand" th:classappend="${tree.pointer}" th:id="'img_'+${tree.code}" th:src="'./images/tree/' + ${tree.icon}" th:attr="alt=${tree.tooltip}, title=${tree.tooltip}" border="0" />
<span class="ev_Expand nowrap" th:classappend="${tree.pointer}" th:id="'lnk_'+${tree.code}" th:text="${tree.name}">ClassName</span> <span class="academic" th:text="'(' + ${tree.code} + ')'">Code</span>
</div>
<div class="treechdlist" th:id="'div_'+${tree.code}"></div>
</div>
</div>
</td>
</tr>
<tr>
<td class="top left">
<img src="./images/spacer.gif" border="0" alt="" title="" height="10"/>
</td>
</tr>
</table>
</div>
|