angularjs - ui-select clearing input after selection -
is there allow typed input cleared after displayed option selected? currently, user has erase typed , type new in , want erased after select something. have.
            <ui-select multiple close-on-select="false" ng-model="vm.model.childusers">             <ui-select-match placeholder="select...">{{$item.fullname}}</ui-select-match>             <ui-select-choices repeat="user.userprofileid user in vm.availableusers | filter: $select.search">{{user.fullname}}</ui-select-choices>         </ui-select>       
 
  
Comments
Post a Comment