我是Extjs中的新手,并且我想要从组合商店中移除2个项目,这些项目应该反映在组合框中。奇怪的是,当我在上面的代码上方添加警告消息时,它会删除那些删除了这些项目的组合框,但不会在此警报消除时刷新。
//alert('test');
var decTypCombo=Ext.ComponentQuery.query('#ddlDecisionType')[0];
decTypCombo.store.remove(decTypCombo.store.getById(16));
decTypCombo.store.remove(decTypCombo.store.getById(17));
decTypCombo.lastQuery=null;
如果我在某处做错了,请告诉我。谢谢。
答案 0 :(得分:3)
确保queryMode设置为' local'。