Skip to main content

Posts

Showing posts with the label How to bind selection box with options in the angular js?

How to bind selection box with options in AngularJs?

In angularjs, we are using the ng-options directive to display the selection. Hello everyone, I am going to share the code-sample for binding  country selection and after selected to country bind the cities behalf  of the selected  country. The example in detail as given below. Live demo example, go to below link http://embed.plnkr.co/Ru5phHLr6TIeazOeObmU/preview . 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 //The Countries CitiesList JSON [{          "code" : 1,          "country" : "India" ,          "cities" : [ "New Delhi" , "New Ashoknagar" ]   }, {          "code" : 2,          "country" : "Nepal" ,          "cities" : [ "Lumbini" ,   "Lumbini" ...