This:
<r:img uri="${it.iconPath}" onclick="goOpenIt('${it.url}')"/>
becomes this:
<img src="/myapp/static/images/icon_32.png" onclick="goOpenIt('http://yahoo.com')" />
I want this:
<img src="/myapp/static/images/icon_32.png" onclick="goOpenIt('http://yahoo.com')" />
I'm afraid you can't. For groovy tags every attribute's value is rendered with encodeToHTML()
. Post answer if you find other solution for this.