The problem is that the following gives error.
Ext.onReady(function() {
Ext.select('nav li a').on('click', function(e) {
var t = e.getTarget('a', 3, true);
if(t){
t.addClass('active');
}
});
});
The error i get on click:
Uncaught TypeError: Object [object Object] has no method 'addClass'
I've tried in many ways, read many tutorials but no luck.