使用extjs 5.1.0 我的问题,当我为网格存储增加价值然后调用store.sync() 插入的行被选中(直观地)但我不能选择它进行编辑或darg& drop row进行排序,只能帮助重新加载网格。
这是我的商店:
var store = Ext.create('Ext.data.ArrayStore', {
model: 'pbxe.module.conference.ConferenceModel',
proxy: {
type: 'direct',
api: {
read: pbxe._conference.read,
create: pbxe._conference.create,
update: pbxe._conference.update,
destroy: pbxe._conference.destroy,
},
reader: {
rootProperty: 'data',
totalProperty: 'totalCount',
successProperty: 'success',
messageProperty: 'message'
},
writer: {
writeAllFields: true,
},
},
autoSync: false,
autoLoad: true,
});