Eleanor
Eleanor

Reputation: 357

"Ext.mixin.Observable#addEvents" is deprecated in Extjs 5/6

What can we use instead of addEvents to add an event to the extended class?

this.addEvents({
    "itemclick" : true
});

Upvotes: 4

Views: 3173

Answers (1)

Bojan Dević
Bojan Dević

Reputation: 1875

Since ExtJS 5.0.0 it is no longer required to call addEvents before fireing events. So when you upgrade to ExtJS 5 or newer just delete all calls of addEvents method.

Observable ExtJS 5 docs

Upvotes: 7

Related Questions