I have a Ext.tree.Panel and define in it I have a store. I want to be able to update the store via ajax along with POST params.

Here is my tree definition:

var mytree = Ext.create('Ext.tree.Panel',{
    rootVisible:false,
    store:Ext.create('Ext.data.TreeStore', {        
        root:{
            id:'rootnode',
            nodeType:'async'         
        },
        proxy:{
            method:'post',
            type:'ajax',            
            url:'myurl'
        }
    })    
});

And I try and reload the store as follows:

mytree.store.load({params:{search_string='value'}})

But the store attempts to reload with the params as GET Parameters.

Some help would be greatly appreciated. The ExtJS 4 Docs arent great at the moment (in my opinion)

link|improve this question

same problem here, i can't find method object in any Ext.data.proxy configuration.. – Warung Nasi 49 May 11 '11 at 9:14
feedback

1 Answer

up vote 3 down vote accepted

There is actionMethods parameter in proxy to specify method of requests: http://dev.sencha.com/deploy/ext-4.0.0/docs/api/Ext.data.proxy.Ajax.html

proxy:{
    actionMethods: {
        create: 'POST',
        destroy: 'DELETE',
        read: 'POST',
        update: 'POST'
    },
    type:'ajax',            
    url:'myurl'
}
link|improve this answer
ah thanks, must have skimmed right over it! – neolaser May 12 '11 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.