extjs添加项目以存储在控制器中

时间:2012-09-30 14:58:13

标签: extjs extjs4

在我的控制器中我有。

               '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
                    }
                }

谢谢你们帮助我。

1 个答案:

答案 0 :(得分:2)

应该如此简单:

getXXXStore().add(modelItem);

其中XXX是您的控件的stores属性中配置的商店名称。