I have two ui-select and I would like that the choice of the first ui-select influences the second ui-select For example if italia item is used in the first ui-select I want in second ui-select iterate on
repeat="item in $ctrl.country.italia"
And if France is the selected item at the first ui-select I want iterate on
repeat="item in $ctrl.country.france"
The problem is that the repeat of ui-select-choice is compiled at the beginning and not when choosing first ui-select. You have ideas or examples?