The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
We want to have checkboxes only on some nodes (leafs). All other nodes (that are parents) should be drawn without checkboxes at all.
Can it be done without owner-drawing all nodes ?
Alexander Arlievsky
alex@mprest.com
ADAdministrator Syncfusion Team January 5, 2004 10:30 AM UTC
Hi Alexander,
Here is a code snippet that demonstrates how you can show checkboxes for only the first (node 0) below the parent node in a TreeViewAdv control in Essential Tools 2.0:
//Show Checkbox only for the first node below the parent node(s)
int i = 0;
while (i < this.treeViewAdv1.Nodes.Count)
{
this.treeViewAdv1.Nodes[i].Nodes[0].ShowCheckBox = true;
i++;
}
I hope this gives you an idea to do what you are looking for.
Regards,
Arun
AAAlexander ArlievskyJanuary 5, 2004 01:10 PM UTC
Thanks,
Was version 2.0 finally released or your example uses beta ? Can it be done on 1.6 ?
Alexander Arlievsky
alex@mprest.com