-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
v-on:change randomly fails on range input bound on a computed property #4746
Comments
Thanks @undavide, seems to be a bug. I am looking into it. |
@defcc I simplified the example to make it less random: http://jsfiddle.net/posva/cm8sa7pk/ |
Thanks @posva :) |
@posva will you please help to check this issue. I haven't got enough time to follow through these days. |
The browser seems not to be triggering the change event on purpose and we don't manually trigger a @undavide You may be already doing this: instead of listening for the |
Actually the example I've posted was implemented in a slightly more complex scenario. I'm building an interface to a Photoshop plugin where the user drags the slider and/or directly types a number in the stepper. A routine is run either when the user press the enter key in the stepper (easy implemented) or is done dragging the handler, i.e. he drops it. So I don't need the routine to be constantly run while the slider (or the bound value) is I could perhaps implement some kind of debounce function, but it's really far from ideal in my case. Thank you! –Davide |
I imagined that you needed to do the computation only on release. Maybe a mouseup event works as well |
maybe you should listen the input event |
It seems when the value in setter and getter are different, the change event will not be triggered. Here is same code with extra log info @undavide provided: |
Just using |
Hello guys, I've just came across exactly the same issue with Does it mean that it's better to use Fail (freezing):
Success (works like a charm):
Tia. |
Vue.js version
2.1.10
Reproduction Link
http://jsbin.com/bapoca/edit?html,js,console,output
Steps to reproduce
The above JSBin contains a slider (range) that logs the value of a computed property it is bound to (
sliderRadius
), when it changes:v-on:change="log"
(log is a declared function)What is Expected?
I would expect that each time the slider changes, the prop is logged in the console.
What is actually happening?
Two different scenarios:
See the animated gif below, using the provided JSBin (recorded on Google Chrome, OSX – the same happens on Safari, thought)
Thank you.
The text was updated successfully, but these errors were encountered: