angularjs - Angular Ui Select Programattically Set Selected Value -


i trying update angular ui-select selected value on pressing tab. js fiddle link https://jsfiddle.net/qufapq1b/3/ ,

controller

 function  selectuicontroller ($scope){  $scope.person = {};  $scope.people = []; $scope.onuiselecttab = function(value) { console.log(value) $scope.person.selected ={ name: 'adam', email: 'adam@email.com', age: 12, country: 'united states' }; document.getelementbyid("next").focus(); }  } 

the code working fine , on pressing tab, selected value set. not displayed in dropdown box. focus shifted next input box expected.

on clicking anywhere body, value displayed in dropdown.

question after focus shifted uiselect, how set value displayed in dropdown.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -