带下拉列表的树视图
System.Web.UI.WebControls.TreeView 在可扩展的树视图中显示分层数据,并且每个节点旁边可能有一个复选框。
我想要类似的东西,但我需要在每个节点渲染一个 DropDownList,这样我就可以有两个以上的选择(选中或未选中)。
有没有办法用 TreeView 来做到这一点?
或者有其他免费控件可以做到这一点吗?
System.Web.UI.WebControls.TreeView shows hierarchical data in an expandable tree view with the possibility to have a checkbox next to each node.
I want something similar, but I need to render a DropDownList at each node, so I can have more than two choices (checked or unchecked).
Is there a way to do this with a TreeView?
Or is there another free control that does it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道其他免费控件,但是使用 TreeView,您无法在不创建自己的版本或接管渲染的情况下做到这一点。 TreeView 不使用 Controls 集合,并且不提供注入任何内容或更改其渲染输出的方法。
I don't know about other free controls, but with a TreeView you can't do it w/o creating your own version or taking over rendering. The TreeView does not use Controls collection and does not provide a way to inject anything or change its render output.