Closed tduchateau closed 10 years ago
Today, the content of a div marked with dt:confType="extrahtml" is not evaluated but retrieved as a String.
dt:confType="extrahtml"
It should be possible to use any Thymeleaf attribute inside. Someting like:
<div dt:conf="myTableId"> <div dt:confType="extrahtml" dt:uid="0" dt:cssStyle="float:right; margin-left: 5px;"> <a th:each="bean : ${collection}" th:text="${bean.someProp}">...</a> </div> </div> ... <table id="myTableId" dt:table="true" ...> ... </table>
Question asked: http://forum.thymeleaf.org/Broken-execution-of-processors-td4028317.html
Today, the content of a div marked with
dt:confType="extrahtml"
is not evaluated but retrieved as a String.It should be possible to use any Thymeleaf attribute inside. Someting like: