Backbone supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface. ...
301
votes
11answers
55k views
Knockout.js vs Backbone.js (vs ?) [closed]
I'm a long-time developer who's getting more and more into in-browser development. (The modern tools are awesome!) I need to build some bigger, longer-running client-side interactions to go with my ...
94
votes
2answers
8k views
Backbone.js vs Spine.js
There seem to be two very similar JS frameworks. Backbone and Spine. Apparently Spine is inspired by Backbone but quite different.
I've no experience with either of them.
What are the pros/cons of ...
37
votes
1answer
2k views
Backbone with a tree view widget
I'm evaluating the Backbone javascript framework for use in a project that will display a hierarchical model in a tree view widget (think the Windows file browser).
I love how Backbone thinks about ...
37
votes
1answer
6k views
How to override Backbone.sync?
I'm trying out Backbone.js, and one of the things I'm trying is to make a call to a remote API, so I need to be able to override Backbone.sync, as I understand the documentation.
There isn't an ...
29
votes
3answers
4k views
Explanation of <script type = “text/template”> … </script>
I just stumbled upon something I've never seen before. In the source of Backbone.js's example TODO application (Backbone TODO Example) They had their templates inside a <script type = ...
23
votes
1answer
853 views
Re-using Backbone.js models on the server side with Node.js and Websockets
I've been working my way through:
http://andyet.net/blog/2011/feb/15/re-using-backbonejs-models-on-the-server-with-node/
I have a few questions about sharing models server-side and a few questions ...
23
votes
3answers
604 views
What does `void 0` mean? [closed]
Possible Duplicate:
What does “javascript:void(0)” mean?
Reading through the Backbone.js source code:
validObj[attr] = void 0;
What is void 0? What is the purpose of using it ...
21
votes
3answers
3k views
why do bindAll in backbone.js views?
In the following demo: http://documentcloud.github.com/backbone/examples/todos/index.html
the code has a few spots where _.bindAll(this,...) is used. Specifically it's used in the initialize function ...
19
votes
1answer
3k views
Loading backbone and underscore using requirejs
I'm trying to load backbone and underscore (and jquery) with requirejs. With the latest versions of backbone and underscore, it seems kind of tricky. For one, underscore automatically registers ...
18
votes
1answer
756 views
Understanding the internal structural dependencies of MVC in Backbone.js
I'm a bit confused w.r.t. the structural dependencies when designing your MVC - so we have a Model, Collection and View (I'm not using controllers as yet, but the question applies to it too). Now who ...
18
votes
6answers
5k views
Best strategy to use HAML template with Backbone.js
Im getting into Backbone.js to structure the javascript code for my project and I love HAML for templating on the backend(rails), so Id like to use it for Backbone Views templating. I know there is ...
17
votes
3answers
766 views
Accessibility and all these JavaScript frameworks
I've been investigating a few of the JavaScript frameworks such as Backbone.js and Batman.js for a while and whilst I really like them, I have one niggling thing that I keep coming back to. That issue ...
17
votes
4answers
4k views
Any backbone.js books available? [closed]
I've been very excited with backbone.js recently, but all I can find was minimal tutorials on the web. Have been searching for a backbone.js book, but since it just recently came out, wasn't able to ...
17
votes
4answers
3k views
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 like to reverse the order. How can I have the models be sorted in a descending rather ...
15
votes
2answers
1k views
Any recommendations for deep data structures with Backbone?
I've run into a headache with Backbone. I have a collection of specified records, which have subrecords, for example: surgeons have scheduled procedures, procedures have equipment, some equipment has ...
15
votes
1answer
2k views
Backbone.js able to do rest and localstorage?
I have been experimenting with the localstorage module for Backbone.js (https://github.com/jeromegn/Backbone.localStorage). As I understand it this overloads Backbone.sync and therefore stops backbone ...
15
votes
1answer
1k views
Best practice for saving an entire collection?
Say that I have a Collection and I've made changes to many of its Models. What's the best way to save all of the changes using a single HTTP request?
15
votes
4answers
4k views
Rendering Layouts with Backbone.js
If you were to build a single page web application (SPWA) using Backbone.js and jQuery with--for example--two controllers that each required a unique page layouts, how would you render the layout?
...
14
votes
1answer
622 views
Does it make sense to integrate backbone.js with ASPNET MVC?
I'm not an expert in these building blocks, but at first glance it seems to me:
ASPNET MVC wants to generate the views and manage the models for an app on the server side. It views the browser as a ...
14
votes
1answer
785 views
Disposing of view and model objects in Backbone.js
Which is the most efficient way to dispose model/view instances when not needed?
Usually, I put all the logic in the controller/router. It is the one that decides, what views should be created, and ...
14
votes
2answers
2k views
Backbone.js and its API confusion
I've recently started using Backbone.js. I like the architecture, in terms of features it's almost exactly what I need...
... However I found the following caveats:
For Collections get means ...
14
votes
2answers
2k views
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() {
// Access the text of the span that was clicked here
...
14
votes
3answers
2k views
Sorting strings in reverse order with backbone.js
I'm trying to sort a Backbone.js collection in reverse order. There are previous replies on how to do this with integers, but none with strings.
var Chapter = Backbone.Model;
var chapters = new ...
14
votes
2answers
2k views
Saving nested objects with Rails, backbone.js, and accepts_nested_attributes_for
I'm using Rails, backbone.js (learning this now). Let's say you have two models, Car and Engine.
var Car = Backbone.Model.extend({
initialize: function() {
if(this.get('engine') != undefined) ...
14
votes
2answers
2k views
Backbone.js: Why isn't this event bound?
I have a simple todo list, and all is rendering as expected, but when I click on the submit button in the edit form, the form is submitted (GET /todo_items), and the page is reloaded an only shows the ...
13
votes
8answers
1k views
Backbone.js tutorials and learning resources
Are there any other backbone.js tutorials or learning resources for beginners than Introduction or Hello backbone.js?
13
votes
7answers
3k views
what is backbone.js
I tried to understand the usability of backbone.js from its site http://documentcloud.github.com/backbone/. However I still couldn't directly figured out much.
Can anybody help me how it works and ...
12
votes
2answers
426 views
Backbone.js - where to store state information?
I'm new to Backbone.js, and I'm trying to figure out where state variables should live. My use case:
I have an application that provides a reading interface for a book (I know, classic example, ...
12
votes
1answer
1k views
need explanation of the _.bindAll() function from Underscore.js
I've been learning some backbone.js and I've seen plenty of instances where _.bindAll() is used. I have read through the entire backbone.js and underscore.js documentation page to try to get a sense ...
12
votes
3answers
894 views
Preferred client side routing solution?
I am designing a one page browser based web application. JQuery is already being used in my application. I am currently planning to use KnockoutJS for data-binding and UI management. However I have ...
12
votes
3answers
6k views
BackboneJS vs JavaScriptMVC vs KnockoutJS
I want to use a JavaScript framework for a complex web application. I have been looking at Backbone.js, knockout.js and JavaScriptMVC. Being pretty new to client side JavaScript heavy web apps, I'm ...
12
votes
4answers
3k views
How do I fetch a single model in Backbone?
I have a Clock model in Backbone:
var Clock = Backbone.Model.extend({});
I'm trying to get an instance of that that has the latest information from /clocks/123. Some things I've tried:
a ...
12
votes
1answer
3k views
Backbone.js: `extend` undefined?
Just getting started with Backbone.js. Simply including Backbone (either dev/production versions) causes the error:
Uncaught TypeError: Cannot call method 'extend' of undefined on Line 128:
// ...
11
votes
7answers
299 views
Patterns for JavaScript security with back-end authorization?
I'm looking for some good resources, patterns and practices on how to handle basic security needs, such as authorization, in client side JavaScript.
I'm building a website with a back-end system ...
11
votes
1answer
335 views
How does Backbone.js keep track of DOM elements without using IDs?
Background
I have been using Backbone.js for some time and one aspect of it that impresses me is how it allows me to simplify, abstract and reuse DOM elements as 'views'. I have tried to read through ...
11
votes
1answer
1k views
JSONP and Backbone.js
I would like to use Backbone.js with a REST api I control. I was hoping to have the REST api and the Backbone scripts live on a different domain but unfortunately this will be blocked, as it is a ...
11
votes
3answers
5k views
backbone.js structuring nested views and models
Using backbone.js:
I have a top level ModelA that contains 2 attributes and 2 nested models, ModelB and ModelC. ModelB and ModelC each have 2 attributes as follows:
ModelA
attributeA1
...
11
votes
3answers
3k views
Backbone.View “el” confusion
I am building my first app with Backbone.js and really like it so far. The documentation is a bit out of date and spread out, but so far I could solve all problems I ran into.
One thing I am wondering ...
11
votes
3answers
530 views
Template language that works on both server and client
I am looking for a template solution that can work on both server side (like ERB) and client side (like EJS) so I don't have to write the views twice for use in, say, both Rails and Backbone.
The ...
11
votes
5answers
4k views
Can I bind form inputs to models in Backbone.js without manually tracking blur events?
I have a backbone.js app (www.github.com/juggy/job-board) where I want to bind my form inputs directly to my model (a la Sproutcore).
Is it possible with Backbone.js (or other tools) without actually ...
10
votes
1answer
360 views
Is there a Money class for JavaScript?
Disclaimer: complete rewrite for clarity as of 10/14/2011
Given the number primitive in JavaScript is an IEEE 754 64-bit floating point (known in other languages as a double), and using floats to ...
10
votes
1answer
910 views
Cannot call 'start' of undefined when starting backbone.js history.
I get Cannot call 'start' of undefined when calling...
Backbone.history.start()
When running some checks Backbone returns the object but Backbone.history returns undefined.
What could be the ...
10
votes
3answers
3k views
Backbone.js - Correct way of filter collection data and display in view
I have got a huge list of tasks loaded on the start.
And then i want to show them depending on selected list / inbox.
So there wouldnt be additional loading for each list.
window.Task = ...
10
votes
2answers
2k views
Backbone.js fetch with parameters
Following the documentation, I did:
var collection = new Backbone.Collection.extend({
model: ItemModel,
url: '/Items'
})
collection.fetch({ data: { page: 1} });
the url turned out ...
10
votes
2answers
2k views
Nested Models in Backbone.js, how to approach
Hello I have the following JSON provided from a server. With this I want to create a model with a nested model. I am unsure of which is way to achieve this.
//json
[{
name : "example",
...
10
votes
2answers
2k views
Backbone.js fetch problem (can't refresh data immediately)
I have such code:
var MyModel = Backbone.Model.extend();
var MyCollection = Backbone.Collection.extend({
url: '/url/',
model: MyModel
});
var coll = new MyCollection();
The url is correct ...
10
votes
2answers
3k views
Backbone JS View Events not Firing?
I'm trying to play around with Backbone JS and so far everything seems to be making sense and working smoothly.
However with the code below, my custom events do not seem to be firing. Anything in ...
10
votes
1answer
2k views
How do I trigger the success callback on a model.save()?
this.model.save({
success: function(model, response){
console.log('success');
},
error: function(){
console.log('error');
}
})
The model is correctly posted to the server which ...
10
votes
6answers
4k views
A RESTful persistence solution usable with backbone.js… in PHP?
I'll preface this with saying that I'm a crappy programmer, I'm sure that what I want to do could be done in 10 lines of node or Rails or something else, but PHP is what I have available.
So, I'm ...
10
votes
3answers
3k views
How to use jQuery Mobile and Backbone JS together in one app?
I've been enjoying using Backbone JS for a iPad HTML5 project... But I'm quickly running into a issue of needing iPad-ish transitions, form elements etc. After looking around, it seems jQuery Mobile ...