Detect click on itemview container in Backbone/Marionette
问题 I have the following item view: return Marionette.ItemView.extend({ template:tpl, tagName: 'div', className: 'v_itv_record_type_item', events:{ 'click @ui.item':'itemClicked' }, ui:{ item:'.v_itv_record_type_item' }, itemClicked:function(e){ console.log('clicked'); } }); that uses the following handlebars template: <div class="clicktarget"> Stuff Goes Here </div> If you click on one of these item views, it does not register the click event. I understand that Backbone restricts access to just