I am having a list of country along with its corresponding states.
Now i want to bind the country and state value in dropdown control when open in edit mode.
You can use ng-repeat
{{country}}
Or use ng-options
In your controller define an array of countries.
$scope.countries = ['America', 'Australia', 'london'];