Gwt-ext窗口定位

发布于 2024-07-08 16:46:52 字数 194 浏览 13 评论 0原文

如何使 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乞讨 2024-07-15 16:46:52

我已经有几个月没有使用 gwt-ext 库了,但是如果您还没有使用过,您可能想尝试一下。 它应该将小部件附加到您想要的位置。 也就是说,在某些情况下,gwt-ext 小部件的反应方式对于真正了解普通 GWT 小部件的人来说并不直观。

RootPanel.get("Some_Div_Id").add( someWidget )

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.

RootPanel.get("Some_Div_Id").add( someWidget )
已下线请稍等 2024-07-15 16:46:52

您应该用于

window.alignTo(DOM.getElementById("Some_Div"),"tl-tl", new int[]{0,0});

将窗口的左上角定位到 Some_Div 的左上角。

这些是位置参数的有效字符串:

Value  Description
-----  -----------------------------
tl     The top left corner (default)
t      The center of the top edge
tr     The top right corner
l      The center of the left edge
c      In the center of the element
r      The center of the right edge
bl     The bottom left corner
b      The center of the bottom edge
br     The bottom right corner

请参阅 Ext 文档以获取详细说明。

You should use

window.alignTo(DOM.getElementById("Some_Div"),"tl-tl", new int[]{0,0});

for positioning the window's top left to Some_Div's top left corner.

These are the valid strings for position argument:

Value  Description
-----  -----------------------------
tl     The top left corner (default)
t      The center of the top edge
tr     The top right corner
l      The center of the left edge
c      In the center of the element
r      The center of the right edge
bl     The bottom left corner
b      The center of the bottom edge
br     The bottom right corner

Refer the Ext documentation for detailed explanation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文