You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Multiple items cannot be selected from a multiple select menu when using ng-multiple and ng-options.I have tested with an object source and an array source, neither work.
It does appear to work if you use multiple (it acts quite differently though)
Previously, <select ngMultiple='...'> would only work with hard-coded
<option> elements underneath, not with an ngOptions attribute. This is
because the boolean ng-multiple attribute is only actually applied inside a
scope.$watch, which happens after the link function for select is called.
The fix is to scope.$watch on the multiple attribute in the select
directive, and refresh the directive when it changes.
Closesangular#2113
Multiple items cannot be selected from a multiple select menu when using ng-multiple and ng-options.I have tested with an object source and an array source, neither work.
It does appear to work if you use multiple (it acts quite differently though)
see http://jsfiddle.net/Spf22/8/
The text was updated successfully, but these errors were encountered: