我需要覆盖Ext.LoadMask
从白色到灰色的默认背景颜色。我怎样才能做到这一点?还添加了图像的屏幕截图和我用来加载蒙版的代码。
var feestore = this.getBillingFeePanelStoreStore();
feestore.on({
beforeload: this.beforeFeestoreLoad,
scope: this
});
beforeFeestoreLoad: function(store, operation, eOpts){
var myMask = new Ext.LoadMask(Ext.getBody(), {msg:"Please wait.... Your request is being processed"});
myMask.show();
任何帮助表示赞赏。