Top "Backbone-events" questions

This is for backbone.

Backbone. Dispatch/listen to events between views

Im a bit confused over how to handle events between views in Backbone. Right now i have two partial views …

backbone.js backbone-events
Bind backbone event to a multiple class selector

I can't get the following event to attach to my element. events = { "change .date-selector .date-range": "dateRangeSelectionChanged" } Is this supported at …

backbone-events
backbone.js events and el

Okay, so I've read several other questions regarding Backbone views and events not being fired, however I'm still not getting …

javascript events backbone.js backbone-events
How to know when a Backbone model.fetch() completes?

I bind on the change event of my backbone models like this. this.model.on( "change", this.render, this ); Sometimes …

javascript backbone.js backbone-events backbone-model
Bind a view to collections in backbone.js

I'm semi-new to backbone. I'm trying to bind a collection to a view so that when a new model is …

backbone.js backbone-views backbone-events backbone.js-collections
In backbone.js how do I bind a keyup to the document

I've been following along with a Railscast tutorial of backbone.js and I wanted to extend the functionality to include …

ruby-on-rails-3 backbone.js backbone-events
Backbone.js - fetch method does not fire reset event

I'm beginning with Backbone.js and trying to build my first sample app - shopping list. My problem is when …

backbone.js backbone-events backbone.js-collections
Backbone Model gives this.set not a function in Model.initialize

I've a model listen on the vent for a event update:TotalCost, which is triggered from (unrelated) Collection C when …

backbone.js underscore.js marionette backbone-events backbone-model
Getting changed attribute on change event

In this global change event, is there a way I can detect which attribute was changed? myModel.on('change', function(…

backbone.js backbone-events
Access click event outside the el in backbone view

How can i access click event outside the el scope. What i have : HTML : <div class="right_btn">&…

javascript jquery backbone.js backbone-views backbone-events