Doing:
    public MyPage() {
        ...
        add(new MyPanel("panelId"));
        ...
    }
dragging elements (having DraggableBehavior) of 'MyPanel' works.

However doing:
    ...
    @Override
    public void onClick(AjaxRequestTarget target) {
        Panel panel = new MyPanel("panelId");
        addOrReplace(panel);
        target.addComponent(panel);
    }
    
dragging elements of 'MyPanel' DO NOT works
(DraggableBehavior is lost).


What's going on ?
Any help is (very) appreciated,
thanks Stefan

Using:
Wicket-1.4.rc4,
WicketJQuery-0.3.4




      

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to