Re: wicket:head and HeaderContributors

2008-06-23 Thread Igor Vaynberg
On Sun, Jun 22, 2008 at 11:50 PM, Jürgen Lind [EMAIL PROTECTED] wrote: Hi, Igor Vaynberg wrote: you can put the javascript that uses your library into window's onload or ondomready event, so it will be executed later. wicket-event.js and WicketEventReference class make it easy. would

wicket:head and HeaderContributors

2008-06-22 Thread Jürgen Lind
Hi, as far as I noticed, Wicket first writes the code fragments of wicket:head into the page and then the parts provided by the HeaderContributors. Is there a way of changing that ordering? The background is that I want to load a javascript library with a HeaderContributor and then use that

Re: wicket:head and HeaderContributors

2008-06-22 Thread Igor Vaynberg
if we switch the ordering then someone else will complain :) maybe they add a javascript library via wickethead and have a contributor spitting out some dynamic javascript. point is its a bad idea to depend on the ordering, whichever way it currently is. -igor On Sun, Jun 22, 2008 at 9:52 AM,

Re: wicket:head and HeaderContributors

2008-06-22 Thread Jürgen Lind
Ok, I understand your point and perhaps my whole setup is wrong. Here is my line of thinking: 1. I have a component that needs some Javascript. 2. The Javascript relies on an external library. 3. There may be several instances of the component on the page. 4. Other components on the page may

Re: wicket:head and HeaderContributors

2008-06-22 Thread Igor Vaynberg
you can put the javascript that uses your library into window's onload or ondomready event, so it will be executed later. wicket-event.js and WicketEventReference class make it easy. another approach is to simply output the javascript that uses the lib via a headercontributor as well. there is a