将复选框添加到 asp.net RadTreeView ChildNodes?

发布于 2024-12-24 03:24:15 字数 288 浏览 1 评论 0原文

我正在尝试向 radtreeview 的所有子节点添加复选框。 现在我在每个节点都有复选框。我需要的是这样的:

Node 1

Node 11

Node 111 --- x

Node 112 --- x

Node 12

Node 121

Node 1211 --- x

Node 1212 --- x

so..只有没有子节点的节点才应该有复选框!

问候,

若昂·马查多

I'm trying to add checkboxes to all the child nodes of my radtreeview.
Now I have checkboxes in every node. What I need is something like:

Node 1

Node 11

Node 111 --- x

Node 112 --- x

Node 12

Node 121

Node 1211 --- x

Node 1212 --- x

so.. only the nodes with no childnodes should have checkboxes!

Regards,

Joao Machado

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

—━☆沉默づ 2024-12-31 03:24:15

解决方案取决于您在创建 RadTreeView 时使用的方法。您是以声明方式设置它(自己定义所有节点)还是动态创建它?无论哪种方式,您都必须使用控件的模板功能,只是以不同的方式。

如果这是第一种情况(声明性方法),您只需在节点的标记中定义一个模板,如 此演示 显示。您可以在每个节点的基础上定义模板,以便每个叶节点都可以具有独特的外观和感觉。

如果您要执行后者(动态创建 RadTreeView),您将必须使用一些 C# 或 VB.NET 编码来完成工作。您仍在使用模板,只是以编程方式定义它。有一篇文档文章涵盖了这种情况,在这里找到 ,它应该帮助您将叶节点设置为唯一带有复选框的节点。

The solution depends on what approach you are using when creating your RadTreeView. Are you setting it up declaratively (defining all the nodes yourself) or are you dynamically creating it? Either way you have to take use of the templating feature of the control, just in different ways.

If it's the first case (declarative approach) you can merely define a template right in the markup of your node, as this demo displays. You can define templates on a per-node basis so each leaf-node could have a unique look and feel.

If you're doing the later (dynamically creating the RadTreeView) you will have to use a bit of C# or VB.NET coding to get things done. You're still using a template, only defining it programmatically. There's a documentation article which covers this scenario, found here, and it should help you with setting up your leaf nodes to be the only nodes with check boxes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文