2
votes

How to remove the window error message (displayed on the right side) from the "allowBlank: false" config of the rowediting plugin when new row is added?

Fiddle: https://fiddle.sencha.com/#view/editor&fiddle/1s26

3

3 Answers

3
votes

You don't need to override the Ext.grid.RowEdit. Just add errorSummary: false in the plugin.

plugins: [{
  ptype: 'rowediting',
  clicksToEdit: 2,
  errorSummary: false
}]
1
votes

You can override the showTooltip method in the RowEditor class:

Ext.define('RowEditorOverride', {
    override: 'Ext.grid.RowEditor',

    showToolTip: function() {
        return;
    }
});
0
votes

add errorSummary: false config