一般に、バックボーンの子ビューから親ビューにアクセスする方法は?
具体的には、Backgrid.js で、セルから親行にアクセスする方法はありますか?
一般に、バックボーンの子ビューから親ビューにアクセスする方法は?
具体的には、Backgrid.js で、セルから親行にアクセスする方法はありますか?
this
初期化ステップでオプションとして子ビューに渡します。
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
}
});