Questions tagged [backbone.js-collections]

For Backbone questions specific to Backbone's collections.

Backbone collections are order sets of models. Collections forward events on their models to the collection's listeners for convenience.

523 questions
0
votes
2 answers

Trouble with removing backbone view

I'm playing around with code from the Code School Backbone tutorial, and some of the code that I'm using from their examples that I've adapted for my own purposes doesn't seem to work. Basically, I've added a listener to add a new model to a…
0
votes
1 answer

Backbone collection is not rendering

I have problem with render of collection. Its simple model with title and boolean 'completed', when you click on list item it's changing to completed value (true/false). Value is changed ( I know it because when I refresh page, in initialize after…
norbert
  • 525
  • 2
  • 6
  • 16
0
votes
2 answers

Can't bind collection to view

How do I bind collection to view? When I debug I can't use this.collection.get() or this.collection.at() in QuizView My code - http://jsfiddle.net/zQYh5/ HTML