I am learning backbone.js and am quite new. I have a view that acts as a button:
simpleButton = Backbone.View.extend({
template : "<button class='${classes}'>${text}</button>",
el : $("body"),
events : {
"click" : "onClick",
"focus" : "onFocus",
"blur" : "onBlur"
},
initialize : function(args){
_.bindAll(this,'render');
this.rendered = false;
this.text = args.text || 'button';
this.classes = args.classes || [];
this.classes.push('ui-button');
//console.debug("Wh.views.simpleButton.initialize classes ",this.classes);
if(args.autoRender === true) this.render();
},
render : function(){
//console.debug("Wh.views.simpleButton.render classes ",this.classes);
if(this.rendered === false) {
$.tmpl(
this.template,
{
classes : this.classes.join(' '),
text : this.text
}
).appendTo(this.el);
this.rendered = true;
}
},
//event handlers
onClick : function(ev){
console.debug(this);
alert("click on ",ev,this);
},
onFocus : function(ev){
////console.debug(ev);
},
onBlur : function(ev){
}
});
My problem is that if I create two buttons, and click just one of them, I get the alert box two times, and the debug showing me "this" shows the first button first, and the second button next.
Am I missing something?
