new item javascript html angularjs frontend ui-select

javascript - item - Angular ui-select múltiple limpieza ng-modelo valor



ui-select angularjs (1)

Solo necesito actualizar la versión de mi ui-select.

Solía ​​usar la versión 0.10.0

Actualicé a la versión 0.11.2

¡Solo un bicho!

Estoy tratando de usar el ui-select y el componente está limpiando mi matriz.

Ejemplo:

{{ vm.staff_hotels }} <ui-select multiple ng-model="x" theme="bootstrap"> <ui-select-match placeholder="Not selected">{{$item.name}}</ui-select-match> <ui-select-choices repeat="hotel.id as hotel in vm.hotels | filter: {active: true} | filter: $select.search"> <div ng-bind-html="hotel.name | highlight: $select.search"></div> </ui-select-choices> </ui-select>

El valor de mi variable "vm.staff_hotels" en la pantalla es [1,2].

{{ vm.staff_hotels }} <ui-select multiple ng-model="vm.staff_hotels" theme="bootstrap"> <ui-select-match placeholder="Not selected">{{$item.name}}</ui-select-match> <ui-select-choices repeat="hotel.id as hotel in vm.hotels | filter: {active: true} | filter: $select.search"> <div ng-bind-html="hotel.name | highlight: $select.search"></div> </ui-select-choices> </ui-select>

pero, si uso la variable en ng-model, mi valor cambia a [null, null].