Dismiss
Announcing Stack Overflow Documentation

We started with Q&A. Technical documentation is next, and we need your help.

Whether you're a beginner or an experienced developer, you can contribute.

Sign up and start helping → Learn more about Documentation →

Multiple select in Angular UI-Select not working. This is my example:

 <ui-select multiple ng-model="params.filter()['manager']" class="form-control" reset-search-input="false">
                                <ui-select-match class="ui-select-match" allow-clear="true" placeholder="Manager">{{$select.selected.name }}</ui-select-match>
                                <ui-select-choices class="ui-select-choices" repeat="item.id as item in selectArray.managerArray  | filter: $select.search "
                                                   refresh="refreshItem($select.search, 'UserGetSearch', 'managerArray')"
                                                   refresh-delay="0">
                                    <div ng-bind-html="item.name"></div> 
                                </ui-select-choices>
                            </ui-select>
share|improve this question
    
what does "not working" mean? and why are you trying to bind ng-model to a function? I don't really think that will work. – Claies Jul 21 at 14:41
    
it works with single selection (without multiple parameter) – Dmitri Mityugov Jul 21 at 14:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.