-
1 Attachment(s)
errorSummary issue
I am using the RowGridEditor plugin (through Sencha Architect) and when I set errorSummary to false, I still get the window that shows a summary of the errors for the editable line. Is there some other way to shut this off? I only want the fields to show with errors and QTips.
Code:
plugins: [
Ext.create(
'Ext.grid.plugin.RowEditing', {
ptype:
'rowediting',
errorSummary:
false,
pluginId:
'driverRowEditingPlugin',
listeners: {
canceledit: {
fn: me.onGridroweditingpluginCanceledit,
scope: me
},
edit: {
fn: me.onGridroweditingpluginEdit,
scope: me
}
}
})
],
Attachment 34830