Gwt-ext窗口定位
如何使 gwtext.client.widgets.Window 的实例出现在我的 html 中的特定 DIV 处? 我尝试了 window.anchorTo(DOM.getElementById("Some_Div"),"left", new int[]{0,0}) ,认为窗口会将自身锚定到我的 html 中的 div id="Some_Div" 。 事实并非如此。
How do I make an instance of gwtext.client.widgets.Window appear at specific DIV in my html ? I tried window.anchorTo(DOM.getElementById("Some_Div"),"left", new int[]{0,0}), thinking the window will anchor itself to div id="Some_Div" in my html. it didnt.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经有几个月没有使用 gwt-ext 库了,但是如果您还没有使用过,您可能想尝试一下。 它应该将小部件附加到您想要的位置。 也就是说,在某些情况下,gwt-ext 小部件的反应方式对于真正了解普通 GWT 小部件的人来说并不直观。
I haven't used the gwt-ext library in a couple of months, but you might want to try this if you haven't already. It should attach the widget where you want it. That said, there are some cases where the gwt-ext widgets react in ways that are not intuitive to someone who really understands the normal GWT widgets.
您应该用于
将窗口的左上角定位到 Some_Div 的左上角。
这些是位置参数的有效字符串:
请参阅 Ext 文档以获取详细说明。
You should use
for positioning the window's top left to Some_Div's top left corner.
These are the valid strings for position argument:
Refer the Ext documentation for detailed explanation.