How to use more parameters in help-ballon grails-plugin
Posted
by servicesskurt
on Stack Overflow
See other posts from Stack Overflow
or by servicesskurt
Published on 2010-05-05T22:17:29Z
Indexed on
2010/05/06
6:28 UTC
Read the original article
Hit count: 355
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?!
as seen on http://www.beauscott.com/examples/help_balloons/doc/examples.htm
© Stack Overflow or respective owner