ionut.rachita
8 Apr 2009, 2:57 AM
Hi,
I'm not sure if this is a bug, so I'm posting here first.
I've noticed in the com.extjs.gxt.ui.client.widget.StoreFilterField that the bind method receives a Store<M> parameter, and that unbind method receives a ListStore<M> parameter. If you want to unbind the same Store object parameter that you used at binding, it will not be possible because Store can not be cast to ListStore.
public void unbind(ListStore<M> store);
public void bind(Store<M> store);
Can anyone cofirm me that this is a bug?
regards
I'm not sure if this is a bug, so I'm posting here first.
I've noticed in the com.extjs.gxt.ui.client.widget.StoreFilterField that the bind method receives a Store<M> parameter, and that unbind method receives a ListStore<M> parameter. If you want to unbind the same Store object parameter that you used at binding, it will not be possible because Store can not be cast to ListStore.
public void unbind(ListStore<M> store);
public void bind(Store<M> store);
Can anyone cofirm me that this is a bug?
regards