Extjs Plugins | //top\\
type: 'debugger', // Custom debug plugin logEvents: true
| Plugin | Purpose | |--------|---------| | Ext.form.FieldSet (not a plugin) | – | | Ext.form.action.StandardSubmit | Submit form as standard browser POST | | Ext.plugin.Clearable | Add clear icon to text fields | | Ext.form.plugin.FieldLabels | Advanced label management | extjs plugins
init: function(form) this.form = form; form.on('beforeaction', this.onBeforeSubmit, this); , type: 'debugger', // Custom debug plugin logEvents: true
Better: use mon (monitor) to safely override. extjs plugins