/
githubmirror
/
angular.js
Обзор
Документация
Войти
/
githubmirror
/
angular.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
benchmarks/select-ng-value-bp/main.html
15 строк
527 B
Michał Gołębiowski
chore(*): make some files non-executable
02 ноя 2016, 13:11
02 ноя 2016, 13:11
856e300
Код
Авторство
О чём код?
<div ng-app="selectBenchmark" ng-cloak> <div ng-controller="DataController"> <div class="container-fluid"> <p> Tests the execution of a select with ngRepeat'ed options with ngValue for rendering during model and option updates. </p> <select ng-model="x"> <optgroup ng-repeat="g in groups track by g.name" label="{{g.name}}"> <option ng-repeat="a in g.items track by a.id" ng-value="a">{{a.label}}</option> </optgroup> </select> </div> </div> </div>