In sencha Extjs 6.0.2 Modern, the painted event is not triggered on Ext.dataview.List components for Chrome 90. Tested on desktop.
Asked
Active
Viewed 588 times
1 Answers
7
Adding this to my app.scss solved the problem in my case
.x-paint-monitor.cssanimation {
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-duration: 0.0010ms;
animation-duration: 0.0010ms;
}
The duration of 0.0010ms
was the minimum that worked well.

yannisalexiou
- 605
- 12
- 25
-
4Thanks @yannisalexiou, this worked for me in Sencha touch 2.3 too. – Ramesh T Apr 22 '21 at 11:17
-
It doesn't works for me but thanks anyway. – Es Noguera May 28 '21 at 19:38