查找 GWT CellTable 标题样式?
如何以编程方式查找 GWT CellTable 标题的 TH 样式名称?
我已经查看了客户端捆绑包文档,但我并不清楚它们是如何组合在一起的。谢谢。
How can TH style name/s of a GWT CellTable's heading be looked up programatically?
I have looked at the Client Bundle documentation but it isn't immediately obvious to me how it all fits together. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定在访问 TH 样式名称时您到底想要做什么。
如果您想覆盖单元表标头的标准 css 样式,可以覆盖以下一些 css 样式来更改组件的外观和感觉。
以下是 cellTable 样式的完整列表 CellTable.css
现在,如果您想以编程方式访问标头,您可以使用 此解决方案获取 TableSectionElement对应于表的标题。然后您可以访问该行,然后访问单元格,并查找它们的样式(我猜)。
最后一件事如果您想覆盖标题样式,也许您可以在将列添加到表格时使用以下方法
然后创建标题或使用 TextHeader 例如然后在其上设置样式,然后使用
示例将其添加到表格中
Not sure exactly what you want to do when accessing the TH style names.
If you want to override the standard css style of a celltable header, here are some of the css styles you can override to change the Look and Feel of the component.
Here is the complete list of styles for cellTables CellTable.css
Now if you want to access you header programmatically, you can use this solution to get the TableSectionElement corresponding the the Header of your table. Then you can access the row, then the cells, and lookup for their styles I guess.
Last thing if you want to override the header style, maybe you can use the following method when adding your column to your table
Then create your Header or use a TextHeader for example then set your style on it before adding it to the table using
Example
简单的解决方案:
Easy solution: