18 lines
527 B
Plaintext
18 lines
527 B
Plaintext
|
|
p.location-badge.
|
|
exported from <a href='../forms'>angular2/forms</a>
|
|
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/forms/directives/select_control_value_accessor.ts#L8-L23">angular2/src/forms/directives/select_control_value_accessor.ts (line 8)</a>
|
|
|
|
:markdown
|
|
Marks <option> as dynamic, so Angular can be notified when options change.
|
|
|
|
#Example:
|
|
|
|
```
|
|
<select ng-control="city">
|
|
<option *ng-for="#c of cities" [value]="c"></option>
|
|
</select>
|
|
```
|
|
|
|
|