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: 4f3a173b73bb0d98d13ff7edb157e87c87b7d22d (plain)
1
2
3
4
5
6
7
<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>