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.
Questions tagged [backbone-views]
1114 questions
-1
votes
1 answer
Backbone.js - reset not triggering the render function
Possible Duplicate:
Backbone.js - add parameter sending to fetch not trigger the collection
In my function, eventhough i added the reset to trigger my render function, nothing is happening... any clue me the wrong what i…

3gwebtrain
- 14,640
- 25
- 121
- 247
-1
votes
3 answers
Backbone.js - change not triggering while the name change
In my backbone function, while the name get change the change function not at all triggering.. any one suggest me the right way to get it.. (actually i need to get changed stuff and need to update);
code :
(function($){
var list =…

3gwebtrain
- 14,640
- 25
- 121
- 247
-2
votes
2 answers
Can 2 independent models be updated in one view in backbone.js
I have 2 seprate models an i need to change these models in one of the view.
Can this be done using backbone.js
If yes can anyone provide me a brief sample
Thanks

Darshan
- 3
- 2
-2
votes
1 answer
boilerplate Collection View doesn't update?
I have created a tiny app in my website using yeoman generator-bbb. The problem is that the collection view doesn't update.
Here is the main code:
app.js:
define(function(require, exports, module) {
// External dependencies.
var _ =…

Tristan
- 1
- 1