AjaxEditableChoiceLabel does not detach choices model
-----------------------------------------------------

                 Key: WICKET-2477
                 URL: https://issues.apache.org/jira/browse/WICKET-2477
             Project: Wicket
          Issue Type: Bug
          Components: wicket-extensions
    Affects Versions: 1.4.1
            Reporter: Edmund Urbani


The component 
org.apache.wicket.extensions.ajax.markup.html.AjaxEditableChoiceLabel never 
detaches its choices list model, thus keeping this model attached indefinitely. 
It should detach when the component's own detach method is called, like eg. 
this:

@Override
public void detachModels() {
        choices.detach();
        super.detachModels();
}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to