Re: notation for multiple js includes

2008-10-19 Thread Sven Homburg
you dont need to include the prototype.js explicit. this library included automaticly if you use the @IncludeJavaScriptLibrary(value={"my.js"}) 2008/10/19 Joel Halbert <[EMAIL PROTECTED]> > I was being particularly dim (it is a Sunday morning after all) > > @IncludeJavaScriptLibrary(value={"${tap

Re: notation for multiple js includes

2008-10-19 Thread Joel Halbert
I was being particularly dim (it is a Sunday morning after all) @IncludeJavaScriptLibrary(value={"${tapestry.scriptaculous}/prototype.js", "${tapestry.scriptaculous}/prototype.js"}) works fine (unsuprisingly). Joel Halbert wrote: Hi, What's the correct syntax for including mulitple js files

Re: notation for multiple js includes

2008-10-19 Thread Martijn Brinkers
Try @IncludeJavaScriptLibrary({"file1.js", "file2.js"}) Martijn On Sun, 2008-10-19 at 12:24 +0100, Joel Halbert wrote: > Hi, > > What's the correct syntax for including mulitple js files in an include > annotation? > Is it > @IncludeJavaScriptLibrary({"${tapestry.scriptaculous}/prototype.js AB

notation for multiple js includes

2008-10-19 Thread Joel Halbert
Hi, What's the correct syntax for including mulitple js files in an include annotation? Is it @IncludeJavaScriptLibrary({"${tapestry.scriptaculous}/prototype.js ABC.js"}) or @IncludeJavaScriptLibrary("${tapestry.scriptaculous}/prototype.js ABC.js") ? (neither seems to work for me) Thx Joel -