I have a problem using ng-value and ng-model. If I use ng-value, data does not bind. Is there a way to have both?
<select next-focus tabindex="0" ng-model="plan.tipo_plan" class="input-sm select-control">
<option ng-repeat="p in planes" ng-value="{{p.id_tipo}}">{{p.tipo_plan}}</option>
</select>