Find Element in Array: {{ array[2] }} OR ng-bind=”array[2]”
List Array Elements: ng-repeat=”x in array” / example2
List an Array of Objects:
- ng-repeat=”x in array
- {{ x.key1 + ‘, ‘ + x.key2 }}
- ng-repeat=”x in array”
- {{x}}
- ng-repeat=”x in array”
- ng-repeat=”(x, y) in myObj”
- https://jsfiddle.net/aicccia/smez33q6/
List an array inside an array:
Add an Element to Array: http://www.w3schools.com/angular/app2
Block Adding an Element Twice to Array: https://jsfiddle.net/aicccia/1phz5Lnn/
Block Adding Empty Element to Array: https://jsfiddle.net/aicccia/te0emLsy/
Remove an Array Element: https://jsfiddle.net/aicccia/rcawut9e/
Dropdown List / Select Form:
- http://www.w3schools.com/angular/select
- http://www.w3schools.com/angular/select_repeat
- http://www.w3schools.com/angular/select_repeat_selected
- http://www.w3schools.com/angular/select_selected
Filter Array orderBy: http://www.w3schools.com/angular/filters_orderby
Display on Tables
- http://www.w3schools.com/angular/tables_simple
- http://www.w3schools.com/angular/tables_css
- http://www.w3schools.com/angular/tables_orderby
- http://www.w3schools.com/angular/tables_uppercase
- http://www.w3schools.com/angular/tables_index
- http://www.w3schools.com/angular/tables_even
Filter by letter: http://www.w3schools.com/angular/filters_filter
Filter on User Input: http://www.w3schools.com/angular/filters_input
Filter Sort: http://www.w3schools.com/angular/orderby_click
Custom Filter: http://www.w3schools.com/angular/filters_custom