Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to get text for ng-options?
Message
De
19/01/2017 07:49:32
 
 
Information générale
Forum:
AngularJS
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01646832
Message ID:
01646844
Vues:
37
>Hi everybody,
>
>Suppose I have the following markup
>
>
> <div class="col-xs-6">
>                <label class="control-label">@Labels.activityEvent:</label>
>                <select class="form-control" ng-model="currentOperatorsNotification.activType"
>                        ng-options="t.value as t.text for t in metaData.events"></select>
>            </div>
>
>I want to be able to get the currently selected item text into a property. How can I do that with ng-options?
>
>Thanks in advance.

Not sure what you mean by 'property' but (guessing) you could use t as the model value and extract anything from that:
<select class="form-control" ng-model="currentEvent"
                        ng-options="t as t.text for t in metaData.events"></select>
<div>{{currentEvent.text</div>
But you'd need to watch currentEvent to keep currentOperatorsNotification.activType in sync with currentEvent.value
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform