我渲染了一个主干视图。现在我想当我点击一个事件时,我的整个 Backbone View 会弹出并呈现在一个灯箱上。
我想做的是:
var ViewerModuleAppView = Backbone.Marionette.ItemView.extend({
//On Initialization of View, this.template = template_viewer_module.html.
template: template,
events: {
'click #pop_out': 'popout'
},
popout: function(){
//ViewerModuleAppView gets render on a PopOut Window(may be Lightbox).
}