簡體   English   中英

ExtJS 凍結在 Safari 14

[英]ExtJS freeze on Safari 14

We have a problem using ExtJS with safari 14. We can easily reproduce the issue in the sencha documentation for that just click on the following link: https://examples.sencha.com/extjs/7.3.0/examples/kitchensink/?經典#remote-combo

進入頁面后,只需單擊 ExtJS 表單之外的某個位置,您的 safari 將永遠凍結...(例如,在屏幕截圖中可見的紅色區域)

https://i.stack.imgur.com/LX0uE.png

這對我們來說是個大問題,因為我們的接口在 safari 上不再可用。 有沒有人已經面臨這個問題並有解決方案?

嘗試以這種方式解決它

Ext.getBody().dom.addEventListener(
    'pointerdown',
    function(e) {
        if(Ext.fly(e.target).getAttribute('data-ref') === 'innerCt') {
            e.preventDefault();
        }
    }
)   

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM