help-balloon

Help-balloons in groovy on grails

Hi! I am using the help-balloons plugin I would like to use it parametrized. I mean, the messages should come from a properties file. In the documentation appears the following: <g:helpBalloon code="user.name" suffix=".help"/> In this last example, the code attribute is used to look up the balloon's title within the message bundle an...

How to use more parameters in help-ballon grails-plugin

I try to use more of the parameters but could not get it working with <g:helpBalloon title="foo" content="bla" useEvent="['mouseover']" /> should result in <script type="text/javascript"> new HelpBalloon({ title: 'foo', content: 'bla', useEvent: ['mouseover'] }); </script> but useEvent="['mouseover']" seems not to be recognized?! ...