Views in the Backbone.js library. Backbone views are used to reflect what your applications' data models look like. They are also used to listen to events and react accordingly.

learn more… | top users | synonyms

0
votes
0answers
10 views

disqus universal code with backbone

I'm working on backbone website that uses disqus as its commenting system, I use backbone boilerplate, and I registered a module for the comment, I included in it the js provided by DISQUS my module ...
1
vote
1answer
24 views

Javascript - BackboneJS - Backbone.sync override - YDN - Asynchronous error

I'm trying to use YDN with Backbone.sync(), but I've a problem with the « fetchAll » function. For exemple, I've this View var UserListView = Backbone.View.extend({ el: ".page", ...
0
votes
0answers
17 views

My header view not getting triggered while content view remove the model

In my app, i have 2 views, one is header view another is content view, while the content view remove a model, then i need to get a trigger on my header view... to do this, i called the content view, ...
0
votes
1answer
19 views

BackboneJS: Modify a single model from different views

How can I modify a single model from different views? Pseudo code: var myModel = Backbone.Model.extend({url: 'rest'}); var myCollection = Backbone.Model.extend({}); var myView1 = ...
0
votes
1answer
33 views

Nested views in Backbonejs, a post & comments relation

Array Of Objects The data is received from server var Updates = [ {"post_id":"1","post_desc":"This is my first post", "comments":[{"id":1,"comment":"some comments","like":7}, ...
0
votes
0answers
14 views

List editor and events of its items editors

I have a very simple model: var ListItem = Backbone.Model.extend({ schema: { name: 'Text', } }); and another simple model which has a list inside: var Configuration = ...
0
votes
2answers
48 views

How do I design MarionetteJS ItemView to properly show loading message?

First off - I am a MarionetteJS noob. I am having trouble making an ItemView display a loading message or throbber while it is being fetched. This is especially problematic when this ItemView is ...
0
votes
0answers
25 views

Backbone: Accessing models attributes recently set across methods

I'm facing a weird behavior with my backbone views and models. Out of full collection, I make a dummy one where the models are containers for group of models from the full one conditionally. This ...
1
vote
1answer
34 views

What is difference between $el and el in Backbone.js View

Can you please tell the difference between $el and el in Backbone.js View
0
votes
1answer
38 views

Not able to remove the variables declared inside backbone view

I have read many posts about the issue of multiple instances of the same backbone view being instantiated every time and the view hangs around in the DOM even after it's not used any more, and how to ...
1
vote
2answers
45 views

low coupling: add a model to a collection of a different view

i'm building a Backbone/Marionette application to list different sets of cards. the layout has an ItemView on the left side including an input field to add a new set and a CompositeView on the right ...
1
vote
0answers
26 views

Backbone.Marionette view element initialization location

I have a general question regards where I should do view element addin initialzation. Say for instance I have a typeahead plugin that requires initialization like so. $(element).typeahead(); Using ...
0
votes
1answer
34 views

Unable to remove the “view” of a model

In my view, i have a click event called clear to remove both model, and element from the page.. to use this in my view i have the function like this: define(["backbone","../router/router"], ...
0
votes
1answer
19 views

How to handle repeating view element with backbone-stickit

What is the best way to do a bindings for a repeating view element? Here is a view fragment currently implemented with underscore template. How can I replace this block with backbone.stickit ? <% ...
0
votes
1answer
39 views

Events in Backbone views

My backbone.js app has a collection of items. The views for collection and each item render as expected. Each item has a two actions on it, lets say A and B. How do I hook up event listeners in my ...
0
votes
1answer
25 views

Show Collection Data in View In Backbone.js

I am new to backbone.js. I have 2 javascript files. 1 for collection and 1 for view. **collection.js** var colle = Backbone.Collection.extend({ initialize: function () { var data = [ ...
0
votes
1answer
22 views

Not triggering the click event - while i use inline template in backbone

I need to make just a small list of students, for that i made the inline template to make element and appending the click event... But i unable to get the element event trigger and it's model... how ...
0
votes
2answers
132 views

Backbone.js Marionette router and nested views

I'm diving into the whole "single page application" and Backbone.js (specifically Marionette) stuff. I'm working on a decently complicated application. I'm wondering how you set up the router to ...
0
votes
1answer
29 views

getting model data to a view backbone.js

I am trying to understand the relationship between a model and a view. I've tried building a model and view to render that model. I get the error Cannot call method 'toJSON' of undefined which I ...
0
votes
1answer
20 views

Can backbone view have multiple DOM elements as $el

My web application has an edit mode in which 2 panels slide it. One from top and one from left. Top panel with full width and 20% height and side panel with rest of the height and 20% width. I have ...
0
votes
1answer
32 views

Undo view change after backbone sync fails

I'm quite confused with backbone's view rendering. I need your help regarding this. For example, I've a Album view. It's render method renders each Track view. All the track specific events are ...
0
votes
0answers
26 views

How can I persist data from one View rendering to the next in Backbone.js (Coffeescript)

PositionSelectView.coffee: class PositionSelectView extends template: template attach: -> @collection.on 'add reset remove', @render Handlebars template, ...
0
votes
1answer
21 views

In Backbone views, which is better: this.$el.find('.selector') or this.$('.selector')?

Both of these work, and FF console shows that they are selecting the same element, but is there any advantage of using one over the other?
0
votes
0answers
30 views

Attaching el to an existing element in Backbone.js but nothing being rendered?

I'm trying to inject a Backbone View into an existing div with the id of "myView". index1a.html: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> ...
1
vote
3answers
78 views

How to ensure that Backbone has rendered the page completely?

I work on a large enterprise application with BackboneJS. One page in the application is constructed using multiple sub-system calls via REsT. How do I make sure that, all the services required to ...
1
vote
1answer
123 views

Creating Relationships in BackboneJS / Accessing Parent Attributes in Backbone Relational

I am using Backbone Relational to handle relationships between two models that I have. Here are the two models that I have: Thread = Backbone.RelationalModel.extend({ urlRoot: '/api/thread', ...
0
votes
1answer
38 views

Pass Options from CollectionView to Recursive CompositeView

I'm doing something extremely similar to the tree structure described in this article: http://lostechies.com/derickbailey/2012/04/05/composite-views-tree-structures-tables-and-more/ The idea is to ...
0
votes
0answers
39 views

No requests made when saving/creating Backbone model

This is stumping me... whenever I do model.destroy() the request goes through successfully and the model gets deleted. However, whenever I try to model.save() or collection.create(this.model) no ...
1
vote
1answer
20 views

Having trouble extending a Backbone view

I am probably missing something easy or doing something wrong, but I am trying this and can't get it to fire the function... var Home = Backbone.View.extend({ indexAction: function() { ...
0
votes
0answers
53 views

Rendering a view on form submit (backbone.js)

I'm trying to render a view on form submit. Say I have a form, which is supposed to act as a filter. I'm rendering the form in a view and when the user hits submit, I want to re render (or perhaps ...
0
votes
1answer
46 views

Changing state of to do list tasks with Backbone in Rails app

I'm very new to Backbone and I'm making a to do list app to learn the basics. Right now you can add a task and it is rendered in the to do list. Each task has the properties name (string) and ...
0
votes
3answers
63 views

Re-sorting backbone collection from view

I'm having problems resorting my collection upon a click event. The sorting function is triggered and executes for each model but neither the reset event is gets triggered nor the collection changes ...
0
votes
1answer
80 views

backbone.js won't fetch data and populate the collection

I have this setup: require.js + backbone.js, that which populate the collection using fetch function of backbone orders.js(collection) define([ 'underscore', 'backbone', 'models/item' ], ...
0
votes
0answers
24 views

How to add default friends while we initiate local storage?

I am using localstorage of backbone.js to override the sync method. still i got a issue, I made to user to add more friends in the list.. works fine. but how can i add some initial(default) friends ...
0
votes
1answer
94 views

Trying to render dynamic dropdowns using Bootstrap and Marionette, sibling tag

<div class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#">Dropdown trigger</a> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> ...
0
votes
0answers
39 views

Template issue with Backbone Marionette

I'm using Backbone Marionette in a simple application but there seems to be a problem with the templates. I'm using Require.js so each template is in a serarate HTML file. Here is one of them. ...
2
votes
1answer
78 views

Backbone: Assign different collection to view

After having initialised a view in Backbone (actually Marionette), is it possible to change its collection? I use a nested model of a list of (main) items with additional sub items. The view displays ...
0
votes
1answer
35 views

onclick event updating the model attribute but the view not rendering

In my backbone, i made a onclick event to each model, to update the name.. that works fine. also i am getting the trigger in my view to update the view of the model.. But the view not updating the ...
0
votes
0answers
37 views

Backbone.Paginator filtering makes views click event fire 3 times

I have search results that are made up of 3 views: searchResultsBarView - hold open Google map button and search filters buttons searchResultsView - hold search results searchGooglemapsView - hold ...
0
votes
1answer
42 views

what is the correct way to get element from collection

In my backbone view, i am getting models from my collection.. initialize:function(){ this.collection = new collection(student); this.render(); }, from this collection i am filtering the ...
0
votes
1answer
44 views

working with backbone and json

I've come to a point in my application where I can't decide which type of JSON structure I should use. My application has multiple nested views like below - -pageView -sectionView ...
0
votes
1answer
58 views

backbone event listener on singleton object

I am trying to create a singleton object as a model for a view on backbone, and I want to re-render the view whenever this singleton object is being changed and updated. I am not sure the following ...
1
vote
2answers
80 views

binding backbone form view UIto model change to enable and disable “save” button

I am creating form something like this using backbone, underscore and backbone.stickit libraries. My screen most look somewhat like this . form html <form id="main"> <div> <label ...
0
votes
1answer
77 views

Backbone.js - Rendering array from View without making a loop in the template

I'm loading all posts for a page using backbone. And Loading comments for a post when clicked on the "Get all comments" link. I'm getting all comments from an Ajax call. Social.Views.StreamsIndex = ...
1
vote
1answer
49 views

Render a different template in backbone.js in same view

I have a View that is already rendering a collection of posts: Social.Views.StreamsIndex = Backbone.View.extend({ template: JST['streams/index'], render: function(){ ...
0
votes
0answers
47 views

Trying to delete a specific item from a backbone.js collection, using Haml modals.

Let me start by describing what I am trying to do. I currently have a piece of HAML code that I did not write and am trying to understand. I am currently trying to get a Backbone.js item (a document, ...
0
votes
1answer
19 views

Accessing parent view's properties

Mates, i'm tryin' to acces properties of a backbone view from a sub-view (don't know if is the correct denomination). Anyway, here's some of the code: App.Views.ViewEditGuest = Backbone.View.extend({ ...
0
votes
1answer
24 views

How to remove extra wrappers for CollectionView with MarionetteJS?

I am having a similar problem as was discussed here for a LayoutView, i.e. that extra wrappers are created: Extra wrappers in Backbone and Marionette Now, I am trying to use a CollectionView and see ...
0
votes
1answer
27 views

How to render a view triggered by an event in other view?

I'm trying to create instant search using backbone.js. I'm planning to hold search box in one view. The entire content in other view. If the user types anything in the search view the collection in ...
0
votes
1answer
29 views

View is not rendering in Backbone.js

I'm trying to render a search box on my page. I'm trying to keep it in a seperate view. The page without this boxview is working correctly but as soon as i initialize my BoxView i get the error ...

1 2 3 4 5 9