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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -