SortableModel should deliver DataModelEvent
-------------------------------------------

                 Key: TRINIDAD-923
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-923
             Project: MyFaces Trinidad
          Issue Type: Bug
    Affects Versions: 1.2.6-core
         Environment: JSF RI 1.2, Trinidad 1.2.x trunk
            Reporter: Martin Koci


It is possible to register DataModelListsners to SortableModel but events are 
never delivered. The reason is: SortableModel uses delegation, not inheritance 
and methods for working with DataModelListeners are not delegated to wrapped 
model. SortableModel  must have methods like:

public void addDataModelListener(DataModelListener listener) {
        _model.addDataModelListener(listener);
}



-- 
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