Is there a way to add a dynamic editable field within the thumbnail section of dropzone.js? I have discovered that Xeditable fields added dynamically need to be initialized. I am attempting to do this in Angular.
Check out the Fiddle here: http://jsfiddle.net/NfPcH/2008/
Here is the code snippet:
$scope.addfield = function()
{
jQuery('.dropzone').append('<a href="#" editable-text="user.name" onbeforesave"updateUser()">KKKKKKKKKK</a>');
};
When clicking on "Add Xeditable field", a new field is added, but it does not initialize properly.