Question

I have something like this:{{item.bla|| item.bla2}}

how can i put this in ng-model, i can't just do it like this:

input class="form-control" type="text" ng-model="{{item.bla || item.bla2}}"
Was it helpful?

Solution

Maybe this will help (assuming item is in scope):

<input class="form-control" type="text" ng-init="model= item.bla || item.bla2" 
          ng-model="model" />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top