GWT CellTable - 根据行添加列
有谁知道是否可以根据显示行的某些值向 CellTable 添加一列?
通常使用 addColumn,但仅在 getValue 方法中启用对行属性的访问。我需要尽早获得此访问权限,以决定是向列添加一些值还是将其留空。
Does anybody know if this is possible to add a column to CellTable depending on the some value od displayed row?
Normally addColumn is used but the access to row properties is enabled only in getValue method. I need to gain this access earlier to decide either to add some value to column or lewave it blank.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是编写自定义单元类来扩展适当的单元类(由 GWT 提供)。然后在渲染方法中,列的内容可能为空或不为空,具体取决于显示/渲染对象的值。例如
The answer is to write custom cell class that extends the appropriate cell class (provided with GWT). Then in render method the column's content might be empty or not depending on the value of displayed/rendered object. E.g.