角度多选下拉列表不显示值

时间:2016-04-05 13:38:39

标签: angularjs

<div class="row">
    <div class="col-xs-12">
<div class="col-xs-2 col-xs-offset-1" style="margin-left: -5%;">
                    <div ng-dropdown-multiselect="" options="product" 
                                    selected-model="selectedproductmodel"
                                    extra-settings="productsettings"
                                    translation-texts="example5customTexts">  
</div> 

控制器代码在这里

 $scope.selectedproductmodel = [];    
         $scope.productsettings = {
                    scrollableHeight: '200px',
                    scrollable: true,
                    enableSearch: true
                };

我在单一下拉列表中获得价值

<select class="form-control" ng-model="selectedproduct"  ng-options="option as option.product_name for option in product"><option></option></select>

i am not getting the values in dropdown.please someone help me to solve this.Thanks

1 个答案:

答案 0 :(得分:0)

当你不给我们更多指示时,很难帮助你。 我们需要知道究竟是什么问题,包括你的变量和html,而不是一般的不工作问题。

我建议你尝试一下这个简单的例子,看看它是否有效。 如果是,请将变量名称更改为您的名称。如果有效,请添加其他内容 如果没有,您可以发布您的发现:“有......失败”。

<div ng-dropdown-multiselect="" options="example1data" selected-model="example1model"></div>

$scope.example1model = []; 
$scope.example1data = [ {id: 1, label: "David"}, {id: 2, label: "Jhon"}, {id: 3, label: "Danny"}];