I am experiencing the same behavior with 1.3.0-beta2. My code:

final Image image = new Image("image", "gfx/online.gif");
Link imageLink = new AjaxFallbackLink("imageToggle") {

        @Override
        public void onClick(AjaxRequestTarget target) {
                image.setModel(new Model("gfx/offline.gif"));
                target.addComponent(image);
        }                       
};

After clicking the link, the ajax-debug shows "online.gif" being sent for
the image name.

Any idea?

Thanks in advance, 

Sven
-- 
View this message in context: 
http://www.nabble.com/AjaxLink-not-updating-Image-tf3915168.html#a11409389
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to