I have the backbone view like
var EditorView = Backbone.View.extend({
//.....
});
var CellView = Backbone.View.extend({
editor: EditorView
initialize: function (optionValues,multiple) {
//....
this.listenTo(this.editor,'change',this.render);
}
//.....
});
But the above only listen to event only once, Not twice.
How should i use listenTo
function so that view always listens to the model's events.