It is possible to call a Grails' tag inside another one using the following synthax.
<g:aContainingGrailsTag value="${aContainedGrailsTag(attr:'whatever')}"
Is it possible to include a custom tag into a Grails tag using the exact same syntax. I am trying it this way:
<td class="${redOrGreen(number:'i')}"> </td>
but it does not work. Any insight on this greatly appreciated.