我只想展示不同的消息。
Ext.Viewport.setMasked({
xtype: 'loadmask',
message: 'Downloading data. Please wait...'
});
当我从服务器下载数据时,我调用了不同的功能。 根据功能,我想更改消息。
请提供指南或工作代码。
我用过
Ext.Viewport.unmask();
在每个函数中重置该函数中的消息..但显示相同的消息。
答案 0 :(得分:1)
很简单。只需获取Viewport加载掩码,然后更新消息。下面是一个示例,一旦设置了加载掩码,现在想要更改文本(甚至其他属性):
Ext.Viewport.getMasked().setMessage('This is a new message.');
答案 1 :(得分:-1)
var loadMask = Ext.getCmp('your view id which you want to use');
loadMask.setMessage(Get the message Dynamically or static);