Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在加载我的查询时显示加载 Rally 动画。有办法吗?这个怎么运作?
最简单的方法是在加载查询时调用以屏蔽您希望屏蔽的应用程序部分,然后像这样取消屏蔽:
Ext.getBody().mask('Loading...'); // put whatever message you want as the param ... query ... Ext.getBody().unmask();
请参阅此处的文档。