I need to be able to dynamically create divs using grails. Something like
<g:each in="${userInstanceList}" status="i" var="userInstance">
<div id="div${fieldValue(bean: userInstance, field: "id")}"
${fieldValue(bean: userInstance, field: "message")}
</div>
</g:each>
Of course, that is terribly wrong and doesn't address styling issues. Since Grails is relatively new, I cannot find any recourses on this. Any help is appreciated.