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

onUpdate/onChange/OnInput not working with input type range in IE 11 . Windows #5415

Closed
sap9433 opened this issue Nov 7, 2015 · 3 comments
Closed

Comments

@sap9433
Copy link

sap9433 commented Nov 7, 2015

onChange is working in chrome though.

Both of the following in working in chrome and not in IE 11 .(React version "react": "0.13.x",)

<input type="range" defaultValue="0.00" min={`${inp.min}`} max={`${inp.max}`} step=".01" onChange={this.handleChange.bind(this, inp.id)}/>
<input type="range" defaultValue="0.00" min={`${inp.min}`} max={`${inp.max}`} step=".01" onInput={this.handleChange.bind(this, inp.id)}/>
@jimfb
Copy link
Contributor

jimfb commented Nov 9, 2015

Version 0.13.x is out of date, please update to 0.14.2 and retry.

If you are on an older version of 0.14, possibly related to: #5323

If (after updating) you still believe this is a bug in the React core, please provide a simple testcase that demonstrates the issue and we can re-investigate.

@jimfb jimfb closed this as completed Nov 9, 2015
@zpao
Copy link
Member

zpao commented Nov 9, 2015

More likely to be related to #554

@sulmanen
Copy link

looked through events for input type=range on MSDN using onMouseMove works as expected.

that fixed the issue for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants