我们在应用程序中为组件(饼图)使用了负载掩码。当页面加载加载掩码显示在该组件上。但是,当页面滚动时,掩码不会移动。
有人可以帮忙吗?
注意:我们使用的是 ExtJS 5。
提前致谢。
使用属性“useTargetEl:true”后,我们的问题就解决了。
加载掩码的最终代码是:
var mask=Ext.create('Ext.LoadMask',{ msg:'请稍候', target:cmpName, useTargetEl : true }); 掩码.show();
您还可以使用以下方法:
// show the mask
me.down('#elementId').getEl().mask('Loading...');
// hide the mask
me.down('#timeline').getEl().unmask();