PDA

View Full Version : ListStore needs a bulk remove method



jbaxter
6 Feb 2009, 5:26 AM
com.extjs.gxt.ui.client.store.ListStore has bulk add and insert methods, but no bulk remove method. So there is no way to remove a list of items without having a remove event fired for each one.



public void add(List<? extends M> models)

public void add(M model)

public void insert(List<? extends M> models, int index)

public void insert(M model, int index)

public void remove(M model)

public void remove(List<? extends M> models) - ***missing***