Well, i will try to explain the situation as good as i can. 

We have a grid with multiple AjaxLazyLoadPanel(ALLP) that load a query each
one. One of the ALLP is a ListView with an ALLP into each row (each row is a
different query). This enviroment works very well.

The problem comes with a ALLP with a Jfreechart image inside. When wicket
loads the image, i think it changes the state of the page from "domready" to
"load", and this makes that the rest of the ALLP don't load properly. I fix
it making a new implementation of ALLP for that image. The new version
substitutes the call of
response.renderOnDomReadyJavascript(getCallbackScript().toString()); to a
new call of 
response.renderOnLoadJavascript(getCallbackScript().toString());. With the
new call the image loads at the end.

But i still have a problem. The rows do not load because they will load at
end and changing the javascript event from render to load does not fix
anything. 

Any ideas?
-- 
View this message in context: 
http://www.nabble.com/Problem-with-multiple-AjaxLazyLoadPanel-and-DynamicImageResource-tp21939285p21939285.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