ExtJs modern 6.0.2: Painted event not triggered in some cases on Chrome 90

Viewed 505

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

1 Answers

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.

Related