angularjs - How to prevent ui-select from being closed when selecting items (with multiple select)? -


i don't want close ui-select dropdown (with multiple select) when select value. close on clicking outside of drop down.

set close-on-select attribute false, shown in documentation.

example:

<ui-select ng-model="selected" close-on-select="false"> 

you can find live example here.


Comments