View source Improve this doc

ngSelected
directive in module ng

Description

The HTML specs do not require browsers to preserve the special attributes such as selected. (The presence of them means true and absence means false) This prevents the angular compiler from correctly retrieving the binding expression. To solve this problem, we introduced the ngSelected directive.

Usage

as attribute
<OPTION ng-selected
     expression="{string}">
   ...
</OPTION>

Parameters

ParamTypeDetails
expressionstring

Angular expression that will be evaluated.

Example

Source





Demo