Created
August 1, 2014 19:30
-
-
Save mitchellsimoens/e9111986e31f1ed2b2bb to your computer and use it in GitHub Desktop.
Ext.create on prototype is bad!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('MyApp.view.Grid', { | |
extend : 'Ext.grid.Panel', | |
xtype : 'myapp-grid', | |
//... | |
plugins : [ | |
//Bad! | |
Ext.create('Ext.grid.plugin.CellEditing', { | |
clicksToEdit : 1 | |
}) | |
] | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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