i have done cell editing/ row editing using row editing plugin. But for some condition i need to declare the plugin in the view's view section as
var editing = Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 2,
pluginId:'celledit'
});
then use the plugin as
plugins: [
editing
],
unfortunately i am not allowed to do this...is there any way that i can store the plugin in a variable and then use it because i have some logic for when should i activate row editing.