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.
SDK2 中是否有可用的繁忙微调器对象来指示用户应等待的时间?
在 SDK1 中,它是这样调用的:
var wait = new rally.sdk.ui.basic.Wait(config)
我在新文档中看不到等效对象
我们没有在 SDK 2 中制作等效组件,因为此功能内置于 Ext. 您应该可以从任何元素调用mask () 和unmask ()。
myComponent.getEl().mask('Loading...'); //do some things myComponent.getEl().unmask();