Angular JS is one of the famous and a ‘WoW’ making Javascript frameworks available. https://angularjs.org/ has plenty of learning resources for Angular JS. This post shows how to create cascading drop downs using Angular JS whilst showing the use of other basic features of Angular JS.
Angular JS relies heavily on angular directives which HTML extended attributes with prefix of ng-
The following sample shows a simple web application developed using Angular JS and Web API. I used the AdventureWorks2012LT database and a Web API 2. UI has two dropdowns, first one shows the product categories and when a category is selected the second one shows the products for that particular category.
http://localhost/ADLTService/api/productcategory – to get the product categories
http://localhost/ADLTService/api/productforcategory/{id} – to get the products for a category id.
Create a simple HTML project and add Angular from NuGet. The below code shows the app script.
The below is my HTML
ng-repeat directive loops through the collection and creates the <options> tag for us. ng-model binds the value to the parameter in ng-change event. Here the name should be identical. The rest Angular knows how to interpret. Cascading drop down simple as that. You can also use ng-options as a directive for the <select> for more details refer this article.
Working Model.
Thanks, works for me!!
How do you achieve this inside an ng-repeat
@Ihemegbulam : I’ve used ng-repeat here, since the categories and products are registered in $scope we can access them in the html. ng-repeat is a foreach directive.
I was searching for having this same functionality with AngularJS 2 but didn’t find anything. Then I come across this article. Thought of sharing with you.
http://www.talkingdotnet.com/cascading-dropdown-select-list-using-angular-js-2/