パラメータ:ExtJS4変更するデータストアが
store = Ext.create('Ext.data.Store', {
fields: [{
name: 'id'
}, {
name: 'filename'
}
// other fields here ...
],
proxy: {
type: 'ajax',
url: 'http://myniftyurl.com/blah',
simpleSortMode: true,
reader: {
type: 'json',
totalProperty: 'total',
root: 'result'
},
extraParams: {
'limit': Ext.get('itemsPerPage').getValue(),
'to': Ext.get('to_date').getValue()
// other params
}
},
model: 'Page',
remoteFilter: true,
remoteSort: true
});
値「と」「限界」とは、ユーザ入力に基づいて変更されますが、そこに問題があります。データストアは、新しい入力の代わりに元のパラメータを使用し続けます。これをどうすれば解決できますか?
ありがとうございます!
MVCパターンを使用していますか? (すなわち、これの後ろにコントローラがありますか?) –
実際にはありません – maximus