I have a service that needs to be invoked with POST instead of a GET. I thought that I read somewhere that I could simply add the method: 'POST' option on the proxy, but it doesn't seem to have an effect.
Ext.define('Sencha.store.Teams', {
extend: 'Ext.data.Store',
config: {
model: 'Sencha.model.Team',
autoLoad: true,
proxy: {
type: 'ajax',
// method: 'GET',
method: 'POST',
url: 'teams.json'
}
}
});