Top "Backbone.js-collections" questions

For Backbone questions specific to Backbone's collections.

Backbone Collection with multiple models?

I'm learning Backbone. I want to create a list that can contain different models, with different attributes. For example, listing …

javascript backbone.js backbone.js-collections
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
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
How to convert an array to Collection in backbone

I have an array defined as: this.noOfHouseHold = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"]; I'm trying to convert it to a Backbone Collection as: var adultListCollection = …

javascript arrays backbone.js backbone.js-collections
backbone.js collection view example using marionette template

Can you please suggest me some example for showing list view through marionette template system. Basically, I have a marionette …

backbone.js marionette backbone.js-collections
Why doesn't Backbone Collection fetch return a promise

The following example code works well: Auth_controller.prototype.isLogged = function(){ //Check if the user is authenticated var getAuthStatus = this.…

javascript jquery backbone.js promise backbone.js-collections
Backbone collection where clause with OR condition

I have searched for this for quite some time but could not get a way to have a where clause …

javascript backbone.js backbone.js-collections
pass parameters to backbone fetch url to deal with a non-standard api

I am trying to manipulate backbone's fetch method to to deal with a bit of a non-standard api. The way …

javascript jquery ajax backbone.js backbone.js-collections