This is probably due to the jQuery delegate event, which the selector > .node > .indent > a does not like.
This can be confirmed by adding the following line of code to the view rendering method. (this is what Backbone does in delegateEvents )
$(this.el).delegate('> .node > .indent > a', 'click', this.toggleGrouped);
If it still does not work, the problem is with the delegate event, and not with the base.
The workaround is to snap to the click event after all the rendering is done in the rendering method.
this.$('> .node > .indent > a').click(this.toggleGrouped);
You will also have to bind the toggleGrouped context in the initialize method, since it no longer binds automatically.
initialize: function() { _.bindAll(this, 'toggleGrouped'); }
source share