DOM ready will only be fired when the dom is ready - which is as the page is
loading / rendering.  When you do an AJAX replace, the DOM is not completely
reinitialized - only part of it is replaced.  You would not want a dom ready
event to fire again because it would reinitialize everything in the dom that
was listening to that event.  Thus, you must fire the reinitialization
yourself on modified components.

--
Jeremy Thomerson
http://www.wickettraining.com



On Tue, May 18, 2010 at 4:35 PM, Ivoneta <ietaraz...@gmail.com> wrote:

>
> I work with JQuery.
> I read in another post that the dom ready event isn't fired.
> it is right?
>
> I suspect I should do the js initializes every time!
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/replace-panel-problems-tp2221878p2221952.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

Reply via email to