ui select not working properly after browser updateHow does data binding work in AngularJS?Why does AngularJS include an empty option in select?Working with select using AngularJS's ng-optionsgetting the ng-object selected with ng-changeWorking with $scope.$emit and $scope.$onHow to have a default option in Angular.js select boxangularjs ng-model select not updating properlyangular forms validation issues when using pluginsDropdown Causes Button To Lose Focusui-select was not working properly
Can you sign using a digital signature itself?
What is the difference between handcrafted and learned features
Can a single server be associated with multiple domains?
Prime parity peregrination
What are good ways to spray paint a QR code on a footpath?
What is the consensus on handling pagination in 2019 on big result sets?
How do researchers used to find articles before the Internet and the computer era?
Plotting the gradient descent
Can I ask to speak to my future colleagues before accepting an offer?
What is the olden name for sideburns?
How do accents of a whole town drift?
Why was Mal so quick to drop Bester in favour of Kaylee?
Mean Value Theorem: Continuous or Defined?
Reverse of diffraction
Should I report a leak of confidential HR information?
Why do user defined scalar functions require the schema?
Was "I have the farts, again" broadcast from the Moon to the whole world?
Can another character physically take something that Mage Hand is carrying/holding?
Java Optional working of orElse is not as if else
Why do I need two parameters in an HTTP parameter pollution attack?
Needle Hotend for nonplanar printing
How exactly is a normal force exerted, at the molecular level?
Is it allowed to spend a night in the first entry country before moving to the main destination?
Acceleration in Circular motion
ui select not working properly after browser update
How does data binding work in AngularJS?Why does AngularJS include an empty option in select?Working with select using AngularJS's ng-optionsgetting the ng-object selected with ng-changeWorking with $scope.$emit and $scope.$onHow to have a default option in Angular.js select boxangularjs ng-model select not updating properlyangular forms validation issues when using pluginsDropdown Causes Button To Lose Focusui-select was not working properly
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have been using ui-select for quite some time without any problems but after the latest browser update it doesn't not work properly anymore. In particular, I am using
angular 1.6.9, angular-ui-select 0.19.8, bootstrap 3.3.7
with the standard settings and standard code such as
$scope.itemArray = [
id: 1, name: "first",
id: 2, name: "second",
id: 3, name: "third"
];
$scope.selected = value: $scope.itemArray[0] ;
and
<ui-select
theme="bootstrap"
ng-model="selected.value">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices
repeat="item in (itemArray | filter: $select.search) track by item.id">
<span ng-bind="item.name"></span>
</ui-select-choices>
</ui-select>
Under Chrome 71.0.3578.98 all works fine but under Chrome 73.0.3683.86 I now seem to be getting an empty text box underneath the selection box, a refresh spinner inside the selection box that is spinning, together with an "x". The issue seems also with other browser, e.g. under Firefox 62.0 all is fine but under Firefox 66.0 I have the same issue.
I am somewhat at a loss and any suggestion as how to fix that would be greatly appreciated.
Note that all the necessary libraries are loaded properly i.e. in the index file
<link rel="stylesheet" type="text/css" href="libs/angular-ui-select/dist/select.css"></link>
<script type="text/javascript" src="libs/angular-ui-select/dist/select.min.js"></script>
angularjs
add a comment |
I have been using ui-select for quite some time without any problems but after the latest browser update it doesn't not work properly anymore. In particular, I am using
angular 1.6.9, angular-ui-select 0.19.8, bootstrap 3.3.7
with the standard settings and standard code such as
$scope.itemArray = [
id: 1, name: "first",
id: 2, name: "second",
id: 3, name: "third"
];
$scope.selected = value: $scope.itemArray[0] ;
and
<ui-select
theme="bootstrap"
ng-model="selected.value">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices
repeat="item in (itemArray | filter: $select.search) track by item.id">
<span ng-bind="item.name"></span>
</ui-select-choices>
</ui-select>
Under Chrome 71.0.3578.98 all works fine but under Chrome 73.0.3683.86 I now seem to be getting an empty text box underneath the selection box, a refresh spinner inside the selection box that is spinning, together with an "x". The issue seems also with other browser, e.g. under Firefox 62.0 all is fine but under Firefox 66.0 I have the same issue.
I am somewhat at a loss and any suggestion as how to fix that would be greatly appreciated.
Note that all the necessary libraries are loaded properly i.e. in the index file
<link rel="stylesheet" type="text/css" href="libs/angular-ui-select/dist/select.css"></link>
<script type="text/javascript" src="libs/angular-ui-select/dist/select.min.js"></script>
angularjs
add a comment |
I have been using ui-select for quite some time without any problems but after the latest browser update it doesn't not work properly anymore. In particular, I am using
angular 1.6.9, angular-ui-select 0.19.8, bootstrap 3.3.7
with the standard settings and standard code such as
$scope.itemArray = [
id: 1, name: "first",
id: 2, name: "second",
id: 3, name: "third"
];
$scope.selected = value: $scope.itemArray[0] ;
and
<ui-select
theme="bootstrap"
ng-model="selected.value">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices
repeat="item in (itemArray | filter: $select.search) track by item.id">
<span ng-bind="item.name"></span>
</ui-select-choices>
</ui-select>
Under Chrome 71.0.3578.98 all works fine but under Chrome 73.0.3683.86 I now seem to be getting an empty text box underneath the selection box, a refresh spinner inside the selection box that is spinning, together with an "x". The issue seems also with other browser, e.g. under Firefox 62.0 all is fine but under Firefox 66.0 I have the same issue.
I am somewhat at a loss and any suggestion as how to fix that would be greatly appreciated.
Note that all the necessary libraries are loaded properly i.e. in the index file
<link rel="stylesheet" type="text/css" href="libs/angular-ui-select/dist/select.css"></link>
<script type="text/javascript" src="libs/angular-ui-select/dist/select.min.js"></script>
angularjs
I have been using ui-select for quite some time without any problems but after the latest browser update it doesn't not work properly anymore. In particular, I am using
angular 1.6.9, angular-ui-select 0.19.8, bootstrap 3.3.7
with the standard settings and standard code such as
$scope.itemArray = [
id: 1, name: "first",
id: 2, name: "second",
id: 3, name: "third"
];
$scope.selected = value: $scope.itemArray[0] ;
and
<ui-select
theme="bootstrap"
ng-model="selected.value">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices
repeat="item in (itemArray | filter: $select.search) track by item.id">
<span ng-bind="item.name"></span>
</ui-select-choices>
</ui-select>
Under Chrome 71.0.3578.98 all works fine but under Chrome 73.0.3683.86 I now seem to be getting an empty text box underneath the selection box, a refresh spinner inside the selection box that is spinning, together with an "x". The issue seems also with other browser, e.g. under Firefox 62.0 all is fine but under Firefox 66.0 I have the same issue.
I am somewhat at a loss and any suggestion as how to fix that would be greatly appreciated.
Note that all the necessary libraries are loaded properly i.e. in the index file
<link rel="stylesheet" type="text/css" href="libs/angular-ui-select/dist/select.css"></link>
<script type="text/javascript" src="libs/angular-ui-select/dist/select.min.js"></script>
angularjs
angularjs
asked Mar 25 at 12:30
FluffyFluffy
1071 gold badge1 silver badge8 bronze badges
1071 gold badge1 silver badge8 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55337838%2fui-select-not-working-properly-after-browser-update%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55337838%2fui-select-not-working-properly-after-browser-update%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown