Top "Backbone-views" questions

Views in the Backbone.

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
how to access a models data from a view in backbone.js

I have a model named person: var person = Backbone.Model.extend({ initialize: function(){ console.log('cool'); }, defaults:{ names:['a','k',…

backbone.js backbone-views backbone-model
Is it possible to stop Backbone "read" requests

I have a backbone application that has a number of views. Switching between views triggers Ajax requests to get different …

jquery backbone.js backbone-views
Backbone table view consuming row view - how to structure?

I have a collection of models that I wish to render in a table view. Each model should be represented …

javascript backbone.js backbone-views
Backbone View inheritance - call parent leads to recursion

I have a three Backbone View class inheritance: var preventRecursion = 0; var parentView = Backbone.View.extend({ initialize: function(){ console.log('parentView'); } }); …

inheritance backbone.js backbone-views
backbone remove view deletes the el

I am creating a single page application, and I am quite new to backbone. I have a problem with creating …

javascript jquery backbone.js backbone-views
How to pass arguments to functions binded in events object in backbone.js

I need to have arguments to the functions used in the events object in Backbone. var DocumentRow = Backbone.View.extend({ …

javascript backbone.js backbone-views
How can I dynamically set a className for a Backbone.js view based on it's model attributes?

Basically what I need is to do something like this App.CommentView = Backbone.View.extend({ className: function() { if (this.model.…

javascript backbone.js backbone-views
Proper way to create a collection list view in Backbone

I'm currently learning Backbone.js and I'm having a hard time learning how to properly use Views (since I have …

backbone.js backbone-views
Backbone and document.title

I'm creating a single page application with backbone.js and would like to know the best way to handle changing …

backbone.js page-title backbone-views