angularjs - Angular Select DropDown not showing selected name during start -


dropdown not getting highlighted in ie10, shows empty select box, once clicked, displays name.

it's working fine on other browsers including ie11.

if remove data-ng-bind , assign name old way, works fine. not data-ng-bind.

this.setting = {        drop:'first';     }     <select data-ng-model="ctrl.setting.drop" data-ng-change="ctrl.logic()">                 <option value="first" data-ng-bind="'name1'"></option>                                        <option value="second" data-ng-bind="'name2'"></option>                                      </select> 

not sure i'm doing wrong.


Comments

Popular posts from this blog

Load Balancing in Bluemix using custom domain and DNS SRV records -

oracle - pls-00402 alias required in select list of cursor to avoid duplicate column names -

python - Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] error -