Open lathanh1108 opened 5 years ago
I'm having a similar issue, thank you. When the slider is present on the page, any text inputs cannot be used.
Any update on this?
@isiegel @lathanh1108 I fixed it but seems I cannot open a PR to patch it.
In vue-range-slider.esm.js
there is a handleKeydown
method. It stops propagation before it returns false if useKeyboard is set to false.
It should instead look like:
handleKeydown: function handleKeydown(e) {
if (!this.useKeyboard) {
return false;
}
e.preventDefault();
e.stopPropagation();
@robinbastien Hey bro, your answer resolve the problem?
Same issue. @robinbastien not quite figured out how to solve this problem?
i have problem when set value with input tag.
i wan't use slider range and input to change value at the same time. but when i set v-model="value[0]" in input tag, it can't change value. i can't set anything in input, value still change when use slider.
can you help me?
Thank you very much