obdobion
10 Aug 2008, 5:53 PM
The generic type of M is not assigned to all appropriate methods in DataListBinder. For instance ...
public ListStore getStore()
should be
public ListStore<M> getStore()
And perhaps DataList could also be a generic class of type <M>. Then the DataList / DataBinder / DataListBinder could all work together without type casting.
public ListStore getStore()
should be
public ListStore<M> getStore()
And perhaps DataList could also be a generic class of type <M>. Then the DataList / DataBinder / DataListBinder could all work together without type casting.