1
I need to select more than one option in my select or something like it, there is this possibility?
<select ng-model="modelcompraevenda.filial" class="form-control" >
<option ng-selected="data.unit == 1" ng-selected="true"
ng-repeat="x in modelcompraevenda.listFiliais"
value="{{x.idFilial}}">{{x.nomeFilial}}>
</option>
</select>
The HTML has
multiple
native. An attribute of the<select>
. You already tested that?– Sergio
do not know, I will research on
– Gabriel Souza