All Questions
Tagged with angular-ui-select angular-ui
26 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
2
answers
1k
views
How to assign values in an Angular form without an input element or hiding the UI element?
I am working on this template-driven form, where I have a dropdown.
The dropdown has an ID as value and Name as the display value.
When I submit the form, I need both the values ID and Name to be in ...
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 ...
0
votes
0
answers
81
views
How to rebind the other ui select
I'm using angular ui-select. I had two ui-selects, the first ui-select's selection will returns a lists of items that parse into second ui-select. Currently, my first ui-select is selected and the ...
0
votes
1
answer
177
views
Manually entering text in angular-ui
My question comes from the selected answer here
<ui-select-choices repeat="hero in getSuperheroes($select.search) | filter: $select.search">
<div ng-bind="hero"></div>
works ...
6
votes
1
answer
687
views
How to not allow copy pasted values in ui-select in AngularJS
I have a dropdown list and a ui-select. on the basis of dropdown value ui-select values are binding. but if i am directly pasting that specific values into ui-select it is showing as selected.
how can ...
4
votes
3
answers
14k
views
angularjs ui-select-choices dropdown aphabetical order depending on the input given
I'm using https://github.com/angular-ui/ui-select for the website I'm working on. Currently the code is as follows:
<ui-select ng-model="model.states">
<ui-select-...
0
votes
1
answer
2k
views
Angularjs UI multiselect with initial selection
I am using Angularjs UI select. I'm facing a problem.
This is my code:
Javascript:
$scope.user.SelectedCategories
$scope.Categories= [
{ value: 'Reading', name: 'Reading Books',Id : 4 },
{ ...
2
votes
0
answers
676
views
angular ui-select-header - workarounds?
I see that ui-select-header (https://github.com/angular-ui/ui-select/wiki/ui-select-header-and-footer) is planned, but I really need a workaround until it is available, any good ideas?
I would like ...
1
vote
1
answer
2k
views
disable ui-select-choices after selecting two items from the ui-select unless user removes atleast one item
Disable ui-select-choices after selecting two items from the ui-select unless user removes atleast one item. This code works great for multiselect. limit attribute not working. So, I used on-select to ...
0
votes
2
answers
2k
views
ui-select with single select (limit attribute is not working)
Here is my code. I used angular UI-select. It is working great. But now, the requirement changed for the dropdown to be selected only once. I used limit attribute, but its not working.
<span id="...
0
votes
0
answers
69
views
angular ui-select - how to use like a selectbox?
I feel like this should be in the documentation but it's just not (actually a lot of things are not) so I'm just very confused.
All I need is a searchable selectbox that works exactly like the html ...
1
vote
1
answer
194
views
Using angular-ui-select with angular seed project
I created a base project from https://github.com/angular/angular-seed and I'm trying to use angular-ui-select to add dropdown menus to this project. I installed angular-ui-select and added select.js ...
6
votes
1
answer
2k
views
Angular UI select not displaying
I am currently using ui-select (https://github.com/angular-ui/ui-select) for dropdowns. I have included select.js and select.css in my index.html file. I have also installed angular-sanitize through ...
0
votes
1
answer
2k
views
useExternalPagination and rowselection in angular UIGrid
I'm working on AngularJS UI Grid and when I use useExternalPagination,useExternalSorting attributes are true, Rowselection is not working.
Below is my grid properties
$scope.gridOption = {
...