I'm trying to generate an attribute name like this :
name="id{{myScopeId}}"
This perfectly works on most cases, but when I do this on an element which already have a custom directive, it doesn't work anymore, and the result is only "id".
This custom directive applies on a file input element and handles the file name.
This will work, and result is
name="file5" : <input name="file{{myId}}" type="file" />
This won't work, result is
name="file" : <input name="file{{myId}}" type="file" file-handler="fileName" />
Here's the jsfiddle with example : http://jsfiddle.net/gubrb/1/
You'll need firebug or similar to see generated attribute name.
Thanks for any help