ExtJs 现代 6.0.2:在 Chrome 90 上的某些情况下不会触发绘制事件

Es *_*era 2 google-chrome extjs extjs6-modern

在 sencha Extjs 6.0.2 Modern 中,在 Chrome 90 的 Ext.dataview.List 组件上不会触发绘制事件。在桌面上测试。

结帐这个小提琴

yan*_*iou 5

将此添加到我的 app.scss 解决了我的问题

.x-paint-monitor.cssanimation {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.0010ms;
    animation-duration: 0.0010ms;
}
Run Code Online (Sandbox Code Playgroud)

的持续时间0.0010ms是运行良好的最小值。

  • 谢谢@yannisalexiou,这在 Sencha touch 2.3 中也对我有用。 (3认同)