Forum /
Ext JS Community Forums 4.x /
Ext: Q&A /
Unanswered: Rowediting pluging override issue
Unanswered: Rowediting pluging override issue
Hi,
I am trying to override rowediting plugin , i need to override reposition:
function (animateConfig) but it is not getting called. kindly help.
code:
Code:
var
rowEditing = Ext.create( 'Ext.grid.plugin.RowEditing' , {
clicksToEdit: 1
});
Ext.override(Ext.grid.plugin.RowEditing,{
reposition:
function (animateConfig) {
alert(
'inside reposition--->' );
});
var
logsGridPanel = Ext.create( 'Ext.grid.Panel' , {
title:
'Simpsons' ,
clicksToEdit: 1,
plugins: [rowEditing],
...
});
Sencha - Support Team
Are you placing the override at the top of your code? I prefer to place them in separate files and included them right after ext-all.js (or whatever you use)
Scott
Thanks scott, i have resolved the issue.
Sencha is used by over two million developers. Join the community, wherever you’d like that community to be
or Join Us