Skip to content

Instantly share code, notes, and snippets.

@mitchellsimoens
Created August 1, 2014 19:30
Show Gist options
  • Save mitchellsimoens/e9111986e31f1ed2b2bb to your computer and use it in GitHub Desktop.
Save mitchellsimoens/e9111986e31f1ed2b2bb to your computer and use it in GitHub Desktop.
Ext.create on prototype is bad!
Ext.define('MyApp.view.Grid', {
extend : 'Ext.grid.Panel',
xtype : 'myapp-grid',
//...
plugins : [
//Bad!
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit : 1
})
]
});
Ext.define('MyApp.view.Grid', {
extend : 'Ext.grid.Panel',
xtype : 'myapp-grid',
//...
plugins : [
//Good!
{
ptype : 'cellediting',
clicksToEdit : 1
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment