Re: [T5] Page naigation using submit

2008-10-19 Thread Ville Virtanen
Hi, and sorry for my bad English :) I meant that I re-invented the wheel, not you. And yes, there are no links that can submit without js. I wrote those comments after a 12 hour work day. I should never do that again :D - Ville Joachim Van der Auwera wrote: > > Ville Virtanen wrote: >> Alwa

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: [T5] Page naigation using submit

2008-10-19 Thread Joachim Van der Auwera (PROGS bvba)
Ville Virtanen wrote: Always nice to re-invent the wheel eh? :D I found no existing solution to my problem, so I don't know why this would be "re-inventing the wheel". My implementation uses zero javascript. Does the Equanda component use js to submit? Also my component works with the normal

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 -