I have two dropdown select boxes, I am using AngularJS to show options in the dropdown.
In my Script when i use $(".select2_demo_1").select2();
only one dropdown shows selected option at a time. I want to show both dropdowns to show selected options. Kindly need help.
<select id="one" class="select2_demo_1 form-control" ng-model="orgs" ng-options="item.OrganizationTypeTitle for item in organization"></select>
<select id="two" class="select2_demo_1 form-control" ng-model="industry" ng-options="i.IndustryTypeTitle for i in industries"></select>
var getOrganizationTypes = OrgService.getOrganizationTypes();
getOrganizationTypes.then(function (response) {
$scope.organization = response.data;
$scope.orgs = $scope.organization[0];
}, function () {
alert('can not get Organization Types!');
});
var getIndustryTypes = OrgService.getIndustryTypes();
getIndustryTypes.then(function (response) {
$scope.industries = response.data;
$scope.industry = $scope.industries[0];
}, function () {
alert('can not get industry types');
})
You need a loop for getting value from same css
Sample : Demo On jsfiddle