0

私のコントローラーには私が持っています。

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

私を助けてくれてありがとう。

4

1 に答える 1

1

次のように単純にする必要があります。

getXXXStore().add(modelItem);

XXX は、コントローラーのstoresプロパティで構成されているストアの名前です。

于 2012-09-30T15:25:48.357 に答える