Merge pull request #2977 from SergioCrisostomo/fix-slider-onchange
Emit change on pointer up also
This commit is contained in:
commit
92b0539a07
1 changed files with 8 additions and 3 deletions
|
@ -240,6 +240,7 @@
|
||||||
if (this.dragging) {
|
if (this.dragging) {
|
||||||
this.dragging = false;
|
this.dragging = false;
|
||||||
this.$refs[`${this.pointerDown}Tooltip`].visible = false;
|
this.$refs[`${this.pointerDown}Tooltip`].visible = false;
|
||||||
|
this.emitChange();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.pointerDown = '';
|
this.pointerDown = '';
|
||||||
|
@ -261,14 +262,18 @@
|
||||||
|
|
||||||
if (!this.dragging) {
|
if (!this.dragging) {
|
||||||
if (this.currentValue[index] !== this.oldValue[index]) {
|
if (this.currentValue[index] !== this.oldValue[index]) {
|
||||||
const exportValue = this.range ? this.currentValue : this.currentValue[0];
|
this.emitChange();
|
||||||
this.$emit('on-change', exportValue);
|
|
||||||
this.dispatch('FormItem', 'on-form-change', exportValue);
|
|
||||||
this.oldValue[index] = this.currentValue[index];
|
this.oldValue[index] = this.currentValue[index];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
emitChange(){
|
||||||
|
const exportValue = this.range ? this.currentValue : this.currentValue[0];
|
||||||
|
this.$emit('on-change', exportValue);
|
||||||
|
this.dispatch('FormItem', 'on-form-change', exportValue);
|
||||||
|
},
|
||||||
|
|
||||||
sliderClick (event) {
|
sliderClick (event) {
|
||||||
if (this.disabled) return;
|
if (this.disabled) return;
|
||||||
const currentX = this.getPointerX(event);
|
const currentX = this.getPointerX(event);
|
||||||
|
|
Loading…
Add table
Reference in a new issue