I am trying to override onRender event in ExtJS 3.4.0 but this gives a script error: object does not support callParent. My objective is to enable or disable buttons based on the rights from session object.
Ext.override(Ext.Button, {
onRender: function () {
this.callParent();
console.log('do something');
}
});
I have resolved with these lines of code: