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

field-multiselect.html « form-field « angularjs « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72a0379f285f8c0b1fb22b1bb0b7d0422ac2397d (plain)
1
2
3
4
5
6
7
8
9
<div>
    <select multiple
            name="{{ formField.name }}"
            ng-model="formField.value"
            ng-options="t.key as t.value group by t.group for t in formField.availableOptions"
            piwik-attributes="{{formField.uiControlAttributes}}">
    </select>
    <label for="{{ formField.name }}" ng-bind-html="formField.title"></label>
</div>