I am trying to use jQuery Editable Plugin in my Backbone.View Object in Symfony2.
When I perform dblclick on DOM element which class is editable it turns in input element as I wish.
Then when I perform keypress I get three issues:
- No route found for "POST /[object Object]" 404 Not Found - NotFoundHttpException
- the key entry "name" for the model turns to empty string.
- the view does not change
My goal is to change the backbone.model and then automatically the view.
var MyView = Backbone.View.extend({
events: {
"dblclick .editable": "edit",
"keypress .editable": "updateOnEnter"
},
edit: function edit ()
{
$(this.el).find(".editable").editable({type:'input'}); // it works
},
updateOnEnter: function updateOnEnter (e)
{
if (e.keyCode == 13) {
this.close();
}
},
close: function close ()
{
this._model.set({
name: $(this.el).find(".editable").text()
});
}
});
.editable. So the eventkeypressis never captured by Backbone. I suppose it is a brand new DOM element created by the jQuery plugin with its own classes and so on. Try to use the inspector to see if I'm right. – fguillen May 10 '12 at 17:55