GWT Grid 如何添加id表

发布于 2024-09-03 21:24:26 字数 27 浏览 3 评论 0原文

如在表格网格中指定单元格 id = ""

as in Table Grid specify cell id = ""

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

梨涡 2024-09-10 21:24:26

好吧,一种解决方案可能是使用 JSNI。您将编写一个本机 js 方法来获取您的单元格(例如 document.getElementsByTagName),然后使用纯 js 为其分配一个 id。

我不确定 GWT 中是否存在某种 TableCell 类(我非常有信心存在) - 您可以尝试使用 setAttribute 方法。

well, one solution might be using JSNI. You would write a native js method that would get your cell (sth like document.getElementsByTagName) and then use pure js to assign it an id.

I'm not sure if there is some kind of TableCell class in GWT (I'm quite confident that there is) - you can try with setAttribute method.

蓝颜夕 2024-09-10 21:24:26

您始终可以使用 .getElement().setAttribute( "attribute", "value" ) 绕过 GWT 设置属性的限制。

You can always get around GWT limitation on setting attributes using .getElement().setAttribute( "attribute", "value" ).

负佳期 2024-09-10 21:24:26

你可以使用这个:

FlexTable ft=new FlexTable();
ft.setWidget(5, 5, new Label());
ft.getCellFormatter().getElement(5, 5).setId("containerArea");

You can use this:

FlexTable ft=new FlexTable();
ft.setWidget(5, 5, new Label());
ft.getCellFormatter().getElement(5, 5).setId("containerArea");
若相惜即相离 2024-09-10 21:24:26

像这样:
getElement().setAttribute("id", "elementId");

Like this:
getElement().setAttribute("id", "elementId");

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