Re: [Wicket-user] ajax javascript control

2007-06-26 Thread ywtsang
Do you mean to add javascript before and after super.getEventHandler() to wrap the wicket generated javascript? e.g. override the method as belows? protected CharSequence getEventHandler() { CharSequence eventHandler = super.getEventHandler(); String s = "my javascript..." + event

Re: [Wicket-user] ajax javascript control

2007-06-26 Thread Igor Vaynberg
On 6/26/07, ywtsang <[EMAIL PROTECTED]> wrote: I can successfully use the wicket built-in ajax support. Everytime the ajax link is "mouseovered", an ajax event is sent to the server for processing. We have attached a static javascript to the "mouseover" event attribute by overridding the metho