On a sencha-touch, here’s is my store declaration
Ext.regStore('newsStore', {
model: 'News',
autoLoad: true,
proxy: {
type: 'ajax',
url: '../news/list.form?format=json',
reader: {
type: 'json',
root: ''
}
},
});
How can I modify params? I tried
params:{ format: 'json'}
But its doesn’t work!
Store declaration
Adding params to proxy and read ajax store
Hope this helps.