Questions tagged [ui-select]

AngularJS-native version of Select2 and Selectize by the AngularUI Team

UI Select

A native AngularJS implementation of Select2/Selectize by the AngularUI Team

Basically a set of libraries that help develop select, multiselect and checkbox element.

Main Features

  • Search, Select, and Multi-select
  • Themes: Bootstrap, Select2 and Selectize
  • Keyboard support
  • jQuery not required (except for old browsers)
  • Small code base: 4.57KB min/gzipped vs 20KB for select2

Resources

382 questions
3
votes
0 answers

angular ui-select - update selected when updating choices

So I have a pretty basic select that looks like this: {{$select.selected.name}}
luka
  • 31
  • 1
  • 1
3
votes
2 answers

ng-class not working with UI select properly

I want to add a class to the specific LI element of UI select through ng-class but i am not able to do so. Example - {{$select.selected.name}} …
Aanchal
  • 55
  • 5
3
votes
1 answer

UI-select placeholder disappears after select

I'm trying to use ui-select to make a state selection but when I select a state the placeholder goes blank, does anyone know how to not make "Filter by province/state" disappear. Here is the code for ui-select-match section of my ui-select: …
tommy_p1ckles
  • 595
  • 2
  • 6
  • 17
3
votes
1 answer

Angular ui-select css not working with ui-bootstrap

I'm trying to use angular ui-select in my project but somehow the css is not working properly. index.html:
dark_shadow
  • 3,503
  • 11
  • 56
  • 81
3
votes
1 answer

Tagging in ui-select (angular-ui) mulitselect

I browsed a lot, but couldn't find a working solution for this. I have a ui-select multiselect UI-SELECT. By using 'tagging' and 'tagging-label' attributes we can add enter custom tags into the list. example is given in this plunker.
akashrajkn
  • 2,295
  • 2
  • 21
  • 47
3
votes
1 answer

AngularJS: ui-select once selected not able to remove selected option apart from change option

I am using ui-select for fetching data from server & populate it in drop down (search & select). I created a plunker for you.
user4870812
3
votes
1 answer

ui-select - make the arrow be on the left side

I'm using the ui-select select-box for angularJS, and I need the arrow of the select-box to be on the left side to match other select-boxes I have and the whole rtl direction of the site. The arrow appreas on the right side in all the examples I'd…
Ella Sharakanski
  • 2,683
  • 3
  • 27
  • 47
3
votes
1 answer

How to use ui-select within inline form of Bootstrap?

I'm facing multiple issues while using ui-select within a bootsrap inline form: http://plnkr.co/edit/tAlsDona9LS8D6KUQziS?p=preview
...
Within form-group, label and ui-select are not inline, even if there are…
István Békési
  • 993
  • 4
  • 16
  • 27
3
votes
1 answer

how to remove unwanted box in ui-select?

Using Angular and multi ui-select, the select box shows an unwanted "extra" box (see picture). How can I remove this? Code:
3
votes
2 answers

UI-Select reset-search-input does not work

Please see my code below, when a choice is select from an input by typing something in i.e "Fr" and all the countries starting with France would appear, however after the input is selected the input field does not get cleared
eugenekgn
  • 1,652
  • 2
  • 17
  • 38
3
votes
1 answer

programmatically selected option is not highlighted in ui-select

angular version: AngularJS v1.3.6 http://github.com/angular-ui/ui-select : Version: 0.8.3 var p1 = { name: 'Ramesh', email: 'Ramesh@email.com', age: 99 }; $scope.people = [ { name: 'Amalie', email: 'amalie@email.com', …
praveenpds
  • 2,936
  • 5
  • 26
  • 43
3
votes
2 answers

Open on focus tabs over to ui-select

I have a simple thing I want to do - when someone tabs over to my ui-select, I want it to drop down automatically. Unfortunately, the ng-focus doesn't seem to fire when the focus changes to the ui-select. Is there a workaround?
Nick Kahn
  • 19,652
  • 91
  • 275
  • 406
3
votes
2 answers

AngularJS UISelect - call REST API on search ( Min 3 chars )

Im using Angular-UISelect to enable search for my dropdown. Now i have a challenge. Need to create a controller level filter ( scoped to controller not app ) that takes 3 min characters from user and hit REST Api based on 3 chars and bind the…
Sunil Vurity
  • 830
  • 9
  • 14
2
votes
1 answer

How to apply both filter:$select.search and limitTo:$select.infiniteCurrentLimit on the same ui-select field?

I have ui-select field that is using infinite-scroll features because it may have a huge amount of options, but then since there are a lot it's tiring to scroll down to find the desired option.
user12192505
2
votes
1 answer

Problem with ui-select with multiple and async options

I have a problem with the ui-select directive (AngularJS 1.6.4, Ui-select 0.19.8). I have created the fiddle here. It's supposed to show contacts in the dropdown I if type more than 3 chars. (I don't even try to filter anything at the moment, the…
Valentin Coudert
  • 1,759
  • 3
  • 19
  • 44