All Questions
Tagged with angular-ui-select angularjs
150 questions
0
votes
1
answer
640
views
how to set group label ordering angularjs ui-select group-by
I am using ui-select-choices group-by to group the list in UI select, grouping is working fine but the problem I am facing is the group labels are not in alphabetical order, below is a code snippet
...
0
votes
1
answer
295
views
How to load model on the fly angularjs Select combo box
At the moment I have a combo box. In my appservice, I query my database and grab top ten.
<select id="StationSelectionCombobox"
name="Country"
ng-options="s.amenityUID as s....
0
votes
1
answer
194
views
Angular ui-select breaks after minifying
I currently need to maintain an angular.js 1.5 application which uses angular-ui-select 0.19.8.
The problem I'm having is, that the ui-select somehow breaks when packaging the app.
When running with ...
0
votes
1
answer
534
views
How do I populate dropdown with names, and values (numeric ids)?
How do I properly bind my dropdown to a controller variable but instead use the id property of my drop down array and not the value to assign value, still showing the drop down content using the name ...
0
votes
3
answers
968
views
Issue with option visibility in ui-select + parent div has overflow-x to scroll
I need to use ui-select within a parent div element which contains overflow-x: scroll style.
The problem is when we click on dropdown the option list hides behind the scrollbar. Please refer this ...
0
votes
1
answer
155
views
Show hexadecimal color in angularjs ui-select
I have a ui-select, in which one of its attributes called color is in hexadecimal, is it possible with angular js to show that color?
<div class="form-group container-fluid">
<label ...
0
votes
0
answers
138
views
ui-selct onchange loading options from the server (upgraded from select2)
I've recently upgraded from select2 to ui-select. I will show below how it was working using select2.
Context : I have a data of clients that needs to be filtered using ui-select.
Since the data ...
1
vote
1
answer
1k
views
Angular-UI-Select ng-model not working with a simple variable on $scope
How do you clear an array with selected values so that values can return to the select?
I have a people array. The people array values are available in select. When I choose names, they are ...
0
votes
1
answer
795
views
ui-select multiple: ng-model how will it be saved as string and not as array
I have this ui select:
<ui-select multiple
ng-model="meas.daysSelected"
theme="bootstrap"
close-on-select="false">
<ui-select-match placeholder="days">{{$item}}</ui-...
2
votes
1
answer
69
views
how to set the updated value in searched field by default after updation in angularjs ui-select directive?
I am facing problem in angularjs ui-select directive. It works fine, it shows me full data in dropdown. When I select a value from search field and want to update it the it is updated but it can't ...
0
votes
1
answer
356
views
Angular UI select does not display initial value
I have a form containing field "Partner". User should be able to set or change the partner by looking up for alternative partner and selecting an it so I use ui-select for the field. There's variable ...
2
votes
1
answer
4k
views
Set ui-select value using ID from an array of objects
Well I have the array of objects in this format
$scope.itemArray = [
{id: 1, name: 'first'},
{id: 2, name: 'second'},
{id: 3, name: 'third'},
{id: 4, name: 'fourth'},
...
9
votes
1
answer
7k
views
ui-select dropdown in modal with overflow
I'm currently facing an issue with displaying a ui-select dropdown within a ui bootstrap modal, which has an overflow css applied.
Currently, when opening the ui-select dropdown, the list of choices ...
0
votes
1
answer
726
views
angularjs ui-select scroll show causing jerk
I've spent a while trying to formulate this question online without success. My problem is that when I click ui-select-choices rendered by angularjs ui-select-choices, the list opens fine down, but ...
0
votes
1
answer
389
views
Angular UI-Select tagging Simple String Tags (With Custom Tag Label & Sort Enabled)
I am building a recipe website which uses angular ui-select when adding tags which will be added to the db if it's not already on db.
I downloaded AngularJS and Angular UI-Select and added it in my ...