Update method doesn't trigger in IE11
See original GitHub issueHey,
I’ll come back and properly fill out this issue this afternoon, but thought I would just put it here before I forget.
The this.update
method doesn’t seem to ever get fired in IE11 or below. However the this.process
one does.
I have temporarily updated the this.process
method to the following (i expanded the if statements while I was debugging) and remove the update
method
/**
* Validate value before update the component.
* @param {Number} value
*/
process: function(value) {
if (value >= this.max) {
value = this.max;
}
if (value <= this.min) {
value = this.min;
}
if (!this.minus && value < 0) {
value = this.min >= 0 ? this.min: 0;
}
this.$emit('input', Number(accounting.toFixed(value, this.precision)));
},
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:5 (2 by maintainers)
Top Results From Across the Web
IE 11, Data from server not update - Stack Overflow
I have strange problem with IE11 only. I have form in my app, when I fill all inputs and try save, request to...
Read more >Install problems with Internet Explorer 11 - Microsoft Learn
Run Windows Update, clicking Check for updates. Check the list for IE11. If it's included in the list of updates for download, exclude...
Read more >IE11 does not update a blank page opened with Window ...
A window opened by Internet Explorer 11 by calling Window.Open() method won't be updated properly. For example, the issue is reproducible by the...
Read more >How to Support IE11 Users as You Move to Angular 13 - Bitovi
To sum it all up, there are two main ways to support IE 11. You can update your tsconfig.json , or you can...
Read more >BizFlow UI function doesn't work with both IE11 and Google ...
IE 11 Version: 11.0.9600.18349 Update Versions: 11.0.32 (KB3160005) Issue: the design layout is now shown correctly and nothing happened after clicking the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed in 2.2.7
Any follow up on this? Experiencing the exact same problem in IE 11.