GWT Grid 如何添加id表
如在表格网格中指定单元格 id = ""
as in Table Grid specify cell id = ""
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如在表格网格中指定单元格 id = ""
as in Table Grid specify cell id = ""
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
好吧,一种解决方案可能是使用 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.
您始终可以使用 .getElement().setAttribute( "attribute", "value" ) 绕过 GWT 设置属性的限制。
You can always get around GWT limitation on setting attributes using .getElement().setAttribute( "attribute", "value" ).
你可以使用这个:
You can use this:
像这样:
getElement().setAttribute("id", "elementId");
Like this:
getElement().setAttribute("id", "elementId");