如何在 adf 树中默认仅显示几列
我正在尝试使用 adf treeTable 组件渲染表格。该表有很多列,我只想默认只显示几列。如果用户从面板上的视图菜单中选择更多列,则应显示所选列,但默认情况下,当第一次渲染表格时,我只想显示一组列。
treeTable 的默认行为是显示所有列。请在这里帮忙。
I am trying to render a table using adf treeTable component. The table has got so many columns and I just want to show only few columns by default. If the user selects few more columns from view menu on the panel, then selected columns should be shown but by default when the table gets rendered fro the first time, I want show only set of columns.
Default behavior of the treeTable is it shows all the columns. Please help in here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在表列上使用渲染属性。将其与返回布尔值或某些布尔属性的某些方法(例如在支持 bean 中)联系起来。用这种方法你可以做任何你需要的检查
Try using rendering property on table columns. Tie it with some method (for example in backing bean) which returns boolean value, or some boolean property. In that method you can do whatever checking you need
为该列设置disabled=“true”就可以了。经过一些小尝试和错误后找到了它。谢谢
Setting disabled="true" for the column does the trick. Found it after little trail and error. thanks