Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get text for ng-options?
Message
From
19/01/2017 07:49:32
 
General information
Forum:
AngularJS
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01646832
Message ID:
01646844
Views:
36
>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform