我需要通过单击按钮在更新 Img 组件的 src 属性期间显示“正在加载图像...”掩码。
此代码不显示加载掩码:
certImg.setLoading('Loading image...');
certImg.setSrc('load_image.php?file_name=' + record.get('invoice_item_file'));
certImg.setLoading(false);
此代码显示,但不隐藏加载掩码(它显示在更新的图像上):
certImg.setLoading('Loading image...');
certImg.setSrc('load_image.php?file_name=' + record.get('invoice_item_file'));
我尝试将图像大小增加到 1-2 Mb,这使得加载它 3-4 秒,但加载掩码仍然没有显示......我还尝试将 certImg.setLoading(false) 放到 afterrender Img 事件中,结果是相同的。
当评论“certImg.setLoading(false);”时 - img 已更新,但 loadmask 仍显示在 img 上...