我有一个网格,当我第一次打开它时我可以编辑正常使用RowEditing插件。当我关闭窗口进行编辑并再次打开时,我无法编辑。
感谢。
答案 0 :(得分:0)
你必须使用取消活动,如果你想更新,那么在"取消"的地方使用更新。
var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
clicksToMoveEditor: 1,
//autoCancel: false,
listeners:{
'canceledit': function(rowEditing, context) {
// Canceling editing of a locally added, unsaved record: remove it
if (context.record.phantom) {
context.store.remove(context.record);
}
}
}
});