通过单击树节点来折叠 richfaces 树
Richfaces 树的默认行为将通过按“树节点名称”左侧的“展开”(>) 来折叠。是否可以通过按“树节点名称”来折叠树?
the default behaviour of richfaces tree will collapse by pressing "expand" (>) on the left hand side of the 'treenode name' . Is it possible to collapse the tree by pressing 'treenode name' instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知示例
tree.js
中有一个名为toggle
的函数只需在用户单击名称时启动它即可。
或者获取 >元素(例如使用 jQuery siblings)并使用
click()
示例:
$(".rf-trn-hnd").click()
- 打开整个树As far as I can see from this example there is a function called
toggle
in thetree.js
Just start it when the user clicks the name.
Or get the > element (for example with jQuery siblings) and use
click()
example:
$(".rf-trn-hnd").click()
- opens the whole tree