Top "Backbone.js" questions

Backbone.

Backbone View: Inherit and extend events from parent

Backbone's documentation states: The events property may also be defined as a function that returns an events hash, to make …

javascript backbone.js backbone-events
Webpack ProvidePlugin vs externals?

I'm exploring the idea of using Webpack with Backbone.js. I've followed the quick start guide and has a general …

backbone.js requirejs amd webpack
Which could be the best backbonejs tutorial for beginners

I am very interested in backbone.js. But when I am learning, there's a lot of confusion in creating the …

backbone.js javascript-framework
"How" to save an entire collection in Backbone.js - Backbone.sync or jQuery.ajax?

I am well aware it can be done and I've looked at quite a few places (including: Best practice for …

jquery ajax backbone.js
Reverse sort order with Backbone.js

With Backbone.js I've got a collection set up with a comparator function. It's nicely sorting the models, but I'd …

javascript backbone.js
Using Handlebars with Backbone

I am learning Backbone/Handlebars/Require. I have looked all over online and on SO - are there any tutorials …

backbone.js requirejs handlebars.js
Super in Backbone

When I override the clone() method of a Backbone.Model, is there a way to call this overriden method from …

javascript inheritance backbone.js
Backbone.js: How to get the index of a model in a Backbone Collection?

Is there a way to find the index of a model within a collection? Let's say in a view we …

backbone.js
'Request header field Authorization is not allowed' error - Tastypie

I am getting the following error while using ApiKeyAuthentication for my Tastypie resources when I try to do an HTTP …

javascript django backbone.js tastypie
backbone.js - events, knowing what was clicked

In one of my backbone.js view classes, I have something like: ... events: { 'click ul#perpage span' : 'perpage' }, perpage: function() { // …

javascript jquery backbone.js underscore.js