ストアの初期化後にレコードを追加したいのですが。
loadData() 、 loadRawData() 、 add() を試しましたが、継ぎ目が機能しません。
これが私のjsfiddleです: http://jsfiddle.net/charlesbourasseau/zVvLc
何か案は ?
コンボボックスにqueryMode: 'local'
を設定する必要があります。最小限の例:
Ext.onReady(function() {
var store = Ext.create('Ext.data.Store', {
alias: 'store.ModeStore',
autoLoad: false,
fields: [{
name: 'mode',
type: 'string'
}, {
name: 'id',
type: 'string'
}],
data: [{
mode: 'mode1',
id: 1
}]
});
var container = Ext.create('Ext.form.field.ComboBox', {
renderTo: Ext.getBody(),
displayField: 'mode',
valueField: 'mode',
store: store,
queryMode: 'local'
});
store.add({
mode: 'mode2',
id: 2
});
});
パネルの場合、remove()
およびadd()
でアイテムを追加または削除できます。
var store = Ext.create('MyApp.store.Roles', {autoLoad: false});
store.load(function(records, action, success) {
if (success) {
store.remove(store.findRecord('id', 50, 0, false, true, true));//exact match
store.add({'id':110,'name':'Agent' });
}
});