In general, how to access parent view from a child view in Backbone?
Specifically, in Backgrid.js, is there a way to access parent row from a cell?
In general, how to access parent view from a child view in Backbone?
Specifically, in Backgrid.js, is there a way to access parent row from a cell?
Pass this
as an option to the child view on initialization step:
var ChildView = Backbone.View.extend({
initialize : function (options) {
this.parent = options.parent;
}
});
// somewhere in the parent view ...
new ChildView({parent:this});
// You can use this code instead
var ChildView = Backbone.View.extend({
initialize : function (options) {
this._configure(options); // Set all the options as local variables
// This is used in the Backbone.View code on the latest version
}
});