Problem: Router events 'routed' & 'route' not working in tree-like views

Code like this don't react to tree navigating, but URL is changed

Code:
this.listenTo(this.getRouter(), 'routed', function (context) {
    console.log('routed', context);
this.setHelpData();
}, this);

this.listenTo(this.getRouter(), 'route', function (context) {
console.log('route', context);
}, this);
In other places all OK.

Not working views: Documents, KnowledgeBaseArticle, Reports, Templates, Email etc