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.
我的印象是animateTarget必须是一个 DOM 元素,其位置和大小将用作相应动画的起始值。
animateTarget
不知何故,当我showAt()在一个窗口上使用并给它一个网格行的 DOM 元素时,什么也没有发生。
showAt()
oWindow.showAt( 50, 50, oRowDom );
我也尝试使用组件对象
oWindow.showAt( 50, 50, oGridComponent );
两者都只是让窗口出现在正确的位置,但根本没有任何动画......
您正在做的事情对于窗口是不可能的。showAt仅接受组件的布尔值或动画配置作为第三个参数,而窗口有一个属性 aminationTarget它将执行您想要的操作。但它必须是 Ext.Element 或 ID。