mobile-angular-ui
mobile-angular-ui copied to clipboard
Two Way Binding Not Working on Forms
I am using the same layout and two way binding is not working on forms. Also the same is not working in your demo on live url. Please let me know how can I achieve the same?
I also having the same problem, and i found the solutions. Change:
<input type = "email" ng-model= "email" / >
to
<input type = "email" ng-model= "$parent.email" / >