Hi,

> I was under the assumption that wicket calls detach on LoadableDeatchable
>  automatically on each request.
> 
> Is this not true?
One of your components must have your model as default model. Either

setModel(myModel); 

Otherwise you have to do the detach on your own:

public void onDetach() {
        myModel.detach();
        super.onDetach();
}

Best Regards,
        Ilja Pavkovic
-- 
binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin

   +49 · 171 · 9342 465

Handelsregister: HRB 115854 - Amtsgericht Charlottenburg
Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to