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
Hey, the problem here is that tether.select doesn't listen to property changes on the select DOM element.
Angular modifies the DOM node's .value property (and the corresponding .selected property on the options).
Tether.Select only listens for attribute and element mutations when pushing an update. Mutation events aren't able to detect property changes -- you could make a directive that requires ngModel and pushes a data attr to the select node.
POC http://codepen.io/felquis/pen/kXpbjv
Hi, I spent some time today debugging my application and I found out the error was caused by the
ng-model
with a number.I fixed it just changing the number to a string, you may like to know about this issue.
Best.
The text was updated successfully, but these errors were encountered: