Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: select element not updating on user interactions, ngshow uses its model #3003

Closed
alexkb opened this issue Jan 29, 2015 · 1 comment
Closed

Comments

@alexkb
Copy link

alexkb commented Jan 29, 2015

Type: bug

Platform: android 4.4 webview

I have a non-dynamic select field in my view with several options, and a number of ng-show conditions later on in the view that use the value of said select field to determine if they should display or not.

The ng-show blocks toggle when they're suppose to meaning the model is updating as expected but the select field rendering the model value doesn't. There's no special controller code changing the model, just the user interacting with the field.

The code looks something like this:

<label class="item item-input item-select">
  <div class="input-label">
    Selection
  </div>
  <select ng-model="data.mySelection">
    <option>1</option>
    <option>2</option>
    <option>3</option>
  </select>
</label>

<div ng-show="data.mySelection == '2'">
  <ion-toggle ng-model="data.extraOption" toggle-class="toggle-calm">Extra Option</ion-toggle>
</div>

I can't replicate the issue in Chrome (via ionic serve), it only seems to be an issue after a mobile build for Android (and I haven't tried iOS yet).

Am I doing something wrong here or is this an ionic/angular bug?

@alexkb alexkb changed the title select element not updating on user interactions, ngshow uses its model bug: select element not updating on user interactions, ngshow uses its model Jan 29, 2015
@alexkb
Copy link
Author

alexkb commented Jan 31, 2015

I've just updated my ionic project from v1.0.0-beta.13 to v1.0.0-beta.14, which also updated some of the angularJS dependencies (1.2.something to 1.3.6), and it seems to have fixed the issue.

I can't see anything obvious in the ionic changelog so perhaps it was an angular thing. Looking through angular's changelog, there are several mentions of select being improved between 1.2 and 1.3.6, so I'd say it was angular.

@alexkb alexkb closed this as completed Jan 31, 2015
@ionitron-bot ionitron-bot bot locked and limited conversation to collaborators Sep 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants