AngularJS Core `
Questions tagged [angularjs-select]
113 questions
0
votes
2 answers
Default selected value in select with ng-repeat
I'm trying to have a default selected value with ng-selected but it doesn't works.
My code is
0
votes
1 answer
Watch a set of select-elements and sum up their id's
I have a list of select-elements and would like to assure that at least one of them has a value selected. I have made a small fiddle,
http://plnkr.co/edit/bLh5Gp7fsLphjX0hcLSB?p=preview
$scope.$watch('vm.list', function(a, b) {
…

chrney
- 257
- 1
- 2
- 12
0
votes
2 answers
How to reset selected options in select with custom value for options in angularJS
I want to reset selected options in select with custom value for options in angularJS :
HTML

Mohammad
- 3
- 1
- 4
0
votes
1 answer
ng-selected is not working
ng-selected is not working
i select the record for the monitors
and modal opens up with the data for that specific record but combo is not selected
but when i inspect the html it ng-selected is true.
here is the code for…

rashfmnb
- 9,959
- 4
- 33
- 44
0
votes
2 answers
$scope not picking up ng-model value in select element
I'm trying to add a value to a variable receiving it from ng-model.
Here is the HTML:

nealous3
- 712
- 1
- 11
- 20
0
votes
4 answers
ng-options doesn't show the ng-model object in the select box on load (AngularJS)
I have a html select input. Here I use AngularJS:
Problem is that…

ganjan
- 7,356
- 24
- 82
- 133
0
votes
2 answers
0
votes
1 answer
0
votes
2 answers
AngularJS input select with integer value in ng-model stop working
I have a app written in C# .NET using WebApi and AngularJS.
At some points in my aplication I fill up a select tag with options using ENUMS, because since the values are not in the database I don't feel like need to create a service that return…

Erick Gallani
- 759
- 8
- 23
0
votes
2 answers
ng-selected with true or false
Hi I have a select options like following.
[
{
"value": "India",
"selected": true
},
{
"value": "Nepal",
"selected": false
},
{
"value": "Bhutan",
"selected": false
}
]
0
votes
2 answers
Angular.js 1.4.7 dynamic ng-options causing mutiple method calls and infdig errors
I have a select list where the content is dynamically generated from the content selected in the first select list. I cant seem to find why I'm getting these errors fired every time the first select list is changed:
Uncaught Error:…

Rtype
- 886
- 11
- 32
0
votes
1 answer
Angular - Assign/Store a Selected Option to Scope Variable For Use
I have a select option with the options of yes or no.
$scope.answs = [
{
text: "Yes",
value: Yes
},
…

RooksStrife
- 1,647
- 3
- 22
- 54
0
votes
4 answers
How can I disable options for different selects in order to have always different options selected?
I'm working with Angularjs.
HTML:
0
votes
2 answers
ngSelect not populating ajax data on page load
I have an angular web app that has the following:
and a controller which populates the select through ajax data. The problem I am having is that the data…

DeanMWake
- 893
- 3
- 19
- 38
0
votes
1 answer
Using ng-select with changing scope
I have a unique problem with ng-select. I have multiple select boxes populated with the same $scope.list (this is an important requirement).
The items can be selected only once in series of dropdowns. I am not able to implement this - since deleting…

Struggler
- 672
- 2
- 9
- 22