是否可以在 AdvancedDataGrid 标题和网格数据/内容之间插入 HBox?
我需要插入一个包含一些文本的框,这些文本出现在网格标题和主要内容之间并跨越所有网格列。我一直在搜索和实验(addChildAt()),但到目前为止还没有运气。这有可能实现吗? 如果没有,是否可以动态呈现标题本身、下方并跨越列标题文本的文本? 任何建议都会很棒, 谢谢 布莱恩
I need to insert a Box containing some text that appears between the grid header and main content and spans all the grid columns. I've been searching and experimenting (addChildAt()) but no luck so far. Is this possible to achieve?
If not, is it possible to dynamically render the text in the header itself, below and spanning the column header text?
Any advice would be great,
Thanks
Brian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的唯一方法是扩展 AdvancedDataGrid 以更改标题、列和单元格渲染器的布局逻辑,以便为新组件留出空间。
这将不是一项微不足道的任务;但应该是可行的。
The only way to do this is to extend the AdvancedDataGrid to change the layout logic for the header, columns, and cell renderers to allow for space for your new component.
It will not be a trivial undertaking; but should be doable.