This is for backbone.
I am using Select2 in my website, and I'm trying to use the select2-selecting event, but its not firing. …
javascript jquery backbone.js jquery-select2 backbone-eventsLet's say I have two views (paginationview and postsview) and a collection (postscollection). Whenever the .next button is clicked in …
javascript backbone.js backbone-views backbone-eventsI'm trying to capture the scroll event within a Backbone.Marionette.CompositeView, but without success. As an exercise, I'm rewriting …
backbone.js backbone-events marionetteI am new to backbone and I am looking for a way for my button to be triggered when I …
javascript jquery backbone.js backbone-eventsSo I have a View that looks like this. //base class var SelectListView = Backbone.View.extend({ initialize: function() { _.bindAll(this, …
backbone.js backbone-eventsHere is my basic backbone view for changing routes. I would like to get the href attribute of the clicked …
backbone.js backbone-views backbone-eventsI am using Backbone and I have a view with events defined: .... events: { 'click .search-button': 'setModelTerm', 'change .source-select': 'setModelSourceId', 'change .…
backbone.js backbone-views backbone-eventsI have super-View who is in charge of rendering sub-Views. When I re-render the super-View all the events in the …
javascript-events backbone.js backbone-eventsDoes in Backbone.Router exists the events both before and after performing routing? My app works with jQuery.mobile and …
javascript backbone.js backbone-eventsProblem: I'm trying to attach a resize event to the window from a view using the new listenTo() method in …
backbone.js backbone-events