Hulk1991
Hulk1991

Reputation: 3153

Set array value to Dropdown using Angularjs

I am newbie to Angularjs. Here is my scenario.

I have an array of

numbers = ['1','2','3'];

And also have a

<select id="fileNumber" ng-model="files"></select>

How Can I add the values of array to the dropdown list fileNumber

I tried,

ng-options="numbers"

Can anyone say how to include array value to dropdown list.

Upvotes: 5

Views: 20625

Answers (2)

Alex Choroshin
Alex Choroshin

Reputation: 6187

Here's an example for working with select and adding values to array:

Update:

  <select ng-model='selectedNumber'  ng-options='number for number in numbers'></select>
<button ng-click="add()">add</button>

Live example: http://jsfiddle.net/choroshin/MTfRD/643/

Upvotes: 11

RaviH
RaviH

Reputation: 3584

Read and follow ng-select directive

Upvotes: 4

Related Questions