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 has been archived by the owner on Oct 2, 2019. It is now read-only.
search-enabled is not dynamic and does not respond to changes on the bound scope variable. For example, if I set search-enabled="my_var", then on my scope I change $scope.my_var from false to true, this does not trigger the search box to be visible.
The text was updated successfully, but these errors were encountered:
…er than scope property
searchEnabled was not reacting to changes in it's value. This is because searchEnabled has a scope.$watch on it but searchEnabled was set as a property on $select not the scope and the watch would never fire. Now the watch evaluates the attrs.searchEnabled for changes and properly reacts to changes in it's value.
Closesangular-ui#505
`searchEnabled` was not reacting to changes in it's value.
This was because searchEnabled has a scope.$watch on it but searchEnabled
was set as a property on $select not the scope and the watch would never
fire.
This commit now changes the watch so it the attrs.searchEnabled for changes
and properly reacts to changes in it's value.
Closes#505
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In spite of the following code:
search-enabled is not dynamic and does not respond to changes on the bound scope variable. For example, if I set search-enabled="my_var", then on my scope I change $scope.my_var from false to true, this does not trigger the search box to be visible.
The text was updated successfully, but these errors were encountered: