2

In sencha Extjs 6.0.2 Modern, the painted event is not triggered on Ext.dataview.List components for Chrome 90. Tested on desktop.

Checkout this fiddle

Es Noguera
  • 426
  • 1
  • 5
  • 19

1 Answers1

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