Backbone/Marionette with select2 v4.0, editing the tags
I have this fiddle which is an extension of the Backbone/Marionette playground fiddle. I included select2 js and css files. Is it possible to edit a tag that is not the last tag? You can edit by backspacing in the box, but it only lets you touch the last one. I would like it to act like a gmail 'to' list where you can double click on one and edit it, then it goes back to a tag on blur. this.$('#foo').select2({ data: [{ id: 1, text: "test1.com" }, { id: 2, text: "test2.com" }], multiple: true, allowclear: true, tags: [], placeHolder: "Click Here!", tokenSeparators: [',', ' '],