I have this form : http://jsfiddle.net/dfJeN/ As you can see the name value for the input is statically set : name="username" , the form validation works fine (add something and remove all text from the input, a text must appears). Then I try to dynamically set the name value : http://jsfiddle.net/jNWB8/ name="{input.name}" Then I apply this to my validation login.{{input.name}}.$error.required (t
