0
Template
<input type="text" data-ng-model="item.title" list="comicstitle">
<datalist id="comicstitle">
<option data-ng-repeat="ttl in titles" value="{{ttl.name}}">
</datalist>
js
$rootScope.titles = [{"id":"1","name":"Alface","value":"1.00"},{"id":"3","name":"Bacon","value":"2.00"},{"id":"4","name":"Queijo Cheedar","value":"2.00"},{"id":"5","name":"Mostarda Dijon","value":"2.00"}];
I need you to find the item input
with the data of the array
<input type="text" ng-model="name">
<input type="text" ng-model="id">
<input type="text" ng-model="value">
Is this what you are looking for? http://jsfiddle.net/dieegov/g2oc1mmn/
– Diego Vieira
Diego that really thank you
– Willian