I need to update the items in a select
using Angular JS.
The initial data in the select
is good (using ng-repeat
), but it will change depending of another parameter value, the ng-repeat
works in the first load, but when the data changes (JSON) the select
shows the initial data and not the new data.
My question is not about how to bind it using JavaScript because I know how, my question is if exists a property that update the items like ng-model
, which update the value of the input when the property associated changes.
Thanks.