Hello,
In a web flow view, I can use the tag g:link:
<g:link action="nombreMysterieux" event="commencer">Commencer</g:link>
that generates an HTML tag, for example:
CommencerHow can I just generates the URL part? When I use:
<goto next="${createLink(action: 'nombreMysterieux', event: 'commencer')}" />
This generates something that seems incorrect (for the URL):
<goto next="/grailsbox/voiceXML/nombreMysterieux?_eventId=commencer" />
How can I do that?
Thank you!
Bertrand.