I'll guess, even though you don't mention it, that you are doing some JS initialization when the page first loads (like making a section of the page an accordion panel). Then you replace this section with a new one and don't reinitialize your JS stuff. You need to do AjaxRequestTarget#appendJavascript(your-initialization-script) in your button.
-- Jeremy Thomerson http://www.wickettraining.com On Mon, May 17, 2010 at 12:39 PM, Ivoneta <[email protected]> wrote: > > Hello > I have a panel with an ajax button. When the button is clicked the ajax > event replace the current panel. > I don't understand why after replaces the panel, the javascripts functions > doesn't work. > > I added the javascript resources in the head of my webpage, in the > traditional way > <html xmlns:wicket> > <head> > <title>FrontEnd Seguros</title> > <script language="JavaScript1.2" > src="views/js/accordion.js"></script> > </head> > <body> > > What things do I suposse to do to the JavaScript works?What is wrong? > Please help meeeeee > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Replace-panel-javaScript-functions-doesn-t-work-tp2220030p2220030.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
