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.
一个 YAHOO.widget.Dialog 对象可以用一个布尔值来实例化,指定对话框是否应该是可拖动的。
但是,一旦对话框被实例化并可用,我以后如何更改可拖动设置?我在 API 中看不到任何方法可以做到这一点。浏览调试器中的对象,我看到了初始配置值,但更改这些值不会改变激活后的行为。
“可拖动”似乎是您想要的属性/属性。尝试做:
myPanel.setProperty("draggable", false);
或者,
myPanel.setProperty("draggable", true);