yangUI changes
[dlux.git] / modules / loader-resources / src / main / resources / assets / views / yangui / filter / types / bits.tpl.html
1 <div ng-controller="filterTypeBitCtrl">
2     <div ng-repeat="bit in type.getChildren('bit')">
3         <span>{{bit.label}}</span>
4         <input type="checkbox" ng-model="type.bitsValues[$index]" ng-checked="type.bitsValues[$index] === 1" ng-true-value="1" ng-false-value="0" ng-change="valueChanged()">
5         <div class='clear'></div>
6     </div>
7     <span>{{'Value '+node.value}}</span>
8 </div>