Welcome to mirror list, hosted at ThFree Co, Russian Federation.

field-checkbox.html « form-field « angularjs « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc016afd67ee80cbc959f4ef411e25b30d70e5a4 (plain)
1
2
3
4
5
6
7
8
9
10
<div class="checkbox">
    <input ng-model="formField.value"
           piwik-attributes="{{formField.uiControlAttributes}}"
           ng-value="1"
           type="checkbox"
           id="{{ formField.name }}"
           name="{{ formField.name }}">

    <label for="{{ formField.name }}" ng-bind-html="formField.title"></label>
</div>