How can i populate options dynamically in select drop-down on click. i want to fetch some data from backend on clicking select box.
`ng-options="type.shorthand as type.name for type in allTypes"`
i want to store value in allTypes when i click on select box to list dropdown.
ng-clickinsideng-clickcall one function to fetch data from backend and push the same data toallTypes. make sureallTypesshould be initialized as empty array.