Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. No route found for "POST /[object Object]" 404 Not Found - NotFoundHttpException
  2. the key entry "name" for the model turns to empty string.
  3. 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() 
            });
        }
});
share|improve this question
There's a few jQuery Editable plugins, which one are you using? – Vincent Briglia May 10 '12 at 16:32
I am using the following pastebin.com/cnRr35Aa – underscore666 May 10 '12 at 16:47
1  
That's jEditable from appelsiini.net/projects/jeditable and the documentation specifies: "There is only one mandatory parameter. URL where browser posts edited content." ... perhaps this is not the desired jQuery plugin for what you're trying to achieve. Try arashkarimzadeh.com/jquery/7-editable-jquery-plugin.html – Vincent Briglia May 10 '12 at 17:23
I don't know but I'm sure the textfield you are seeing when the text becomes editable doesn't match with the selector .editable. So the event keypress is 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
@fguillen the close function is triggered on key press event, but I get the server error... actually for now I don't want to post any request to the server but just save the result in my Model. – underscore666 May 10 '12 at 18:56
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.