Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Interpolate name attribute in NgModelController #3204

Closed
andrewdavey opened this issue Jul 11, 2013 · 1 comment
Closed

Interpolate name attribute in NgModelController #3204

andrewdavey opened this issue Jul 11, 2013 · 1 comment

Comments

@andrewdavey
Copy link

When generating repeated form inputs, setting the name attribute to be an expression does not populate the form.XXX.$invalid, etc, properties.

For example:

<form name="form">
  <div ng-repeat="item in items" ng-class="{ 'error': form[item.key].$invalid }">
    <input type="text" name="{{item.key}}" ng-model="item.value" />
  </div>
</form>

I believe this is due to the following line in NgModelController:
https://github.com/angular/angular.js/blob/master/src/ng/directive/input.js#L937

Could this be enhanced by using $interpolate to evaluate the intended name?

@pkozlowski-opensource
Copy link
Member

This is duplicate of #1404
There are several PRs for this already, we just need to review them.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants