This is for backbone.js questions that specifically relate to Backbone's event handling system.

learn more… | top users | synonyms

1
vote
1answer
59 views

Backbone.js submit event not firing

I'm at a loss as to what's going on here. I think it's because I'm loading the form later on in the view, but I'm honestly not sure. Here's my view. define([ 'jquery', 'underscore', ...
0
votes
0answers
16 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
1answer
28 views

Where to use event aggregator in backbone marionette?

I want to implement a custom vent event aggregator instance with requirejs as explainer here Looking at examples here and in the docs, I've seent that calls to vent.on and vent.trigger are mainly ...
1
vote
1answer
48 views

Backbone listenTo not working

I have the following working code, and I was planning to replace object.on calls with object.listenTo calls: setField: function(field) { if (this.field) this.field.off(null, null, this); if ...
0
votes
3answers
46 views

Not getting change events when radio buttons are clicked

Mates, I'm tryin' to set backbone events when radio buttons are clicked. I have the following buttons: <p><label for="pays">Pays now</label><input id="pays" name="pays" ...
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
20 views

issues listening to events with backbone

I am trying to listen for when my view's "attachmentClicked" function is called in another object. Here is the class which originally calls the event: class AttachmentView extends ...
0
votes
1answer
26 views

How to handle multiple invalid events being fired from collection.create() in backbone.js

I am adding a model using the collection.create method. I have over-ridden the model.validate method and the error window pops up I get the correct error messages. Everything seems to work great ...
0
votes
1answer
41 views

Backbone: keep in sync both collections

I have a collection of tiles. When app starts collection is fetched from server and its clone is assigned to a collection property of MdApp.TilesCollection object: MdApp.TilesCollection.fetch({ ...
2
votes
3answers
67 views

Triggering a Backbone.js event when the current date changes

Is there a simple way to trigger a Backbone.js event when the current date (just the day, not the time) changes?
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, ...
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
2answers
51 views

Backbone collection always with n models

I'm trying make a list with last ten models or less on collection. I have events to add models dynamically with create. This event calls 'add' on collection and with my logic this add correctly one ...
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
0answers
67 views

Backbone.js html select / radio change event is not firing, but click event is

I am learning backbone but I'm stuck at binding a onchange event for html option element. I tried to bind with 'change' or 'change #id' but none of these fire. However, both the 'click' and 'click ...
0
votes
1answer
19 views

Is it possible to trigger an event when initializing a model?

In a backbone model, is it possible to trigger an event in the initialize function, for a nested view? I based my current code off this example: http://stackoverflow.com/a/8523075/2345124 and have ...
1
vote
0answers
34 views

Rebinding Backbone 1.0 observers of a model to a different model

Is it possible to rebind all the observers (or is it "listeners") of a Backbone 1.0 model to a new model of the same type? What I have is a sessionManager object: var SessionManager = ...
0
votes
0answers
39 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
43 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
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
83 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
40 views

backbone model event not firing

I'm using backbone with requirejs, I trigger an event on a global application object and set when the application start an handle but for some reason the event is not getting catched here is the code ...
0
votes
1answer
124 views

How to enable/disable save button of backbone form-view when user changes form content

I have form which gets data from backbone model. When the form is shown, they have initially value set to backbone model. Now, if any field is edited, i want to enable "save" button immediately as ...
0
votes
1answer
39 views

Can't get backbone view to respond to events added by this.on()

I want to listen to event/s in my View, but only after some processing (to be specific, I only what to respond to these events after a successful ajax call - that is all working, it's just this event ...
0
votes
1answer
96 views

Backbone Layout Manager subview's events doesn't work after reload

I'm using the Backbone Layout Manager Boilerplate. Unfortunately, a quite frustrating bug occurred. I like render a list of items as subviews inserted by insertView function. At the first load ...
0
votes
1answer
79 views

Why backbone.js doesn't render the view in this example?

I am started learning backbone.js and working a sample backbone application, where tweets feeds of search term is populated in view of backbone from tweeter API. The following is my code for backbone ...
1
vote
4answers
117 views

Backbone view Render method default parameter

I have a backbone view which is associated with model. View is listening for change method and it calls render if model is changed. this.listenTo(this.model, 'change', this.render); I'm having a ...
0
votes
3answers
89 views

Backbone View render function getting called multiple times

I have a view that represents a folder. I have bunch of subviews, that this folder view creates, each representing a unique thumbnail in that folder. It turns out that each one of those subview's ...
0
votes
0answers
65 views

Backbone model validation doesn't work

I have this code: this.bindTo(this.model, 'invalid', function(model, error) { // this callback is triggered when data is invalid as expected }); this.model.set("foo", "bar"); this.model.save({}, { ...
0
votes
1answer
91 views

Backbone Layoutmanager delegateEvents on subview not working

What I have is the following: Views.Parent = Backbone.View.extend( { template: "parent", initialize: function( ) { this.render( ); }, beforeRender: function( ) { ...
0
votes
1answer
62 views

How to override tagName, id, className, el, and events from sub views?

Let's say I have the following Backbone structure: var BrowserView = Backbone.View.extend({ el: 'body', events: { click : "onClickEvent" }, initialize: function () { ...
0
votes
0answers
25 views

JQuery slider's lower range label stuck when changing upper range

I'm using JQuery slider in backbone.js. In starting, in displayed the right value of lower range. When I change the lower range, label changes its value. but yet I'm not changing the upper range. See ...
0
votes
0answers
27 views

Bind backbone event to a multiple class selector

I can't get the following event to attach to my element. events = { "change .date-selector .date-range": "dateRangeSelectionChanged" } Is this supported at all in Backbone.js? Or am I using a ...
1
vote
2answers
151 views

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 I fetch collection of items, reset event isn't probably fired, so my render method isn't ...
0
votes
0answers
61 views

Save Backbone response from server as file on client

I have a backbone model User. When I save it, the response from the server returns as a string. I need it to pop up to the client as a file save: the client needs to be able to save the response as a ...
0
votes
3answers
30 views

Backbone collection export issues

I have a collection of users (model user) model has a boolean value: isExport i have a button that on click supposed to post to the server all the users that isExport=true Can anyone suggest a ...
0
votes
1answer
121 views

Backbone.js / Marionette.js global module event bindings…?

I'm trying to see if there is a way to automatically bind an start,stop,before:start event to all modules that are initialized without having to add this.on('start',function() {}) boilerplate to every ...
3
votes
1answer
119 views

How can I “bubble up” events on nested Backbone collections?

I have a Backbone app that uses nested collections (at least that's how I think they're called). In my particular case there are tabs and subtabs, and each tab (model) contains a collection of subtab ...
0
votes
2answers
124 views

How to get a correct event target in Backbone.js View that is listen to an event of jqGrid?

I use jqGrid together with Backbone.js and I have the view that represents the grid. The code is below: var GridView = Backbone.View.extend({ initialize: function(){ _.bindAll(this); ...
0
votes
2answers
75 views

Backbone get attributes returns undefined

I have got my backbone model defined like this: define (require) -> Backbone = require 'backbone' class IndexModel extends Backbone.Model defaults: status: "" country: "" language: ...
0
votes
1answer
41 views

How to get attributes from the clicked element in backbone event?

Here is my basic backbone view for changing routes. I would like to get the href attribute of the clicked link. How to do that? Here is a code bellow: var Menu = Backbone.View.extend({ el: ...
1
vote
1answer
53 views

Why would .on() work but .listenTo() fail?

I am working on a backbone project and inside of the initialize function of a view, I am trying to set a listener on a collection, like so: this.listenTo(this.collection, "change:attr", this.render) ...
0
votes
1answer
270 views

Can't get backbone to bind the submit event of a form

I'm using the following code to create the view: LoginForm = Backbone.View.extend({ tagName :"form" ,id : "login-form" ,className :"navbar-form" ,initialize: function () { ...
0
votes
1answer
48 views

Change event is not getting trigger when updating model in backbone js

I have a view called layerPanel that is using screenData model. Now on model.set i get update event from model itself, but its not working on view. MODEL var screenData = Backbone.Model.extend({ ...
0
votes
1answer
78 views

Can't seem to properly bind Backbone events in Coffeescript

Ok, so I'm having quite some difficulty getting event binding to work with Coffeescript and Backbone. I have a feeling it has to do with how I'm initializing everything; I feel like the event ...
0
votes
1answer
61 views

how to listen to array submodel's value change

I have a model define like below. var A = Backbone.Model.extends({ initialize: function(){ this.on('change:users.name',this.onUserNameChanged) }, onUserNameChanged: function(){ ...
2
votes
2answers
266 views

Backbone.js - “Object [object Object] has no method 'listenTo'”

Question: I have code that works like this: BottomPaneView initialize: function() { ... this.childView = null ... this.listenTo(this.childView, "findUnit", this.findUnit); } in another ...
1
vote
2answers
50 views

backbone.js how to: when an attribute is set, automatically update another

Folks, wondering about best practice and an API detail for the following situation. Let's say we have a model Selection: Selection = Backbone.Model.extend({ defaults: { value : null, ...
0
votes
1answer
155 views

Update backbone model on change of global variable?

I have a Collection of Venue objects which all have their own lat/long properties, using this and the users position I can calculate the distance between user and each venue. My issue is that I can't ...
2
votes
3answers
159 views

Configurable Backbone.js events selectors

I'm working on simple application with excelent framework Backbone.js and it will be nice if I could make configurable backbone view events selector for example this way it doesn't work, cause it's ...

1 2 3 4 5 6