acha-framework
Version:
is a modular framework on both client (angular.js) and server (node.js) side, it provides security, orm, ioc, obfuscation and ...
13 lines • 442 B
HTML
<div ng-show="visible" class="af-radio af-component form-group {{::cssClass}}">
<div ng-repeat="radio in items"
ng-click="vm.onPick(radio)"
class="radio {{::inline?'radio-inline':''}}">
<label>
<input type="radio"
ng-checked="model === radio[valueField]">
<span class="text">
{{::radio[textField]}}
</span>
</label>
</div>
</div>