在我的控制器中我有。
'panel > button':{
click:function(){
console.log('button clicked')
var view = Ext.ComponentQuery.query('#alexPanel')[0];
var modelItem = view.getPostValue() // i get the data from the form
//here i would like to update my store with a new item
}
}
谢谢你们帮助我。
答案 0 :(得分:2)
应该如此简单:
getXXXStore().add(modelItem);
其中XXX是您的控件的stores
属性中配置的商店名称。