Treeview

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i just downloaded treeview control,i'm using framework 1.

Why the check box is not visible in my treeview contro

the following is my cod

<iewc:TreeView id="TreeView2" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 8px" runat="server
ShowPlus="False" SystemImagesPath="C:\Inetpub\wwwroot\aspnet_client\system_web\1_1_4322\1_0\treeimages/
ExpandLevel="1"><iewc:TreeNode NodeData="fvhghgh" Checked="True" CheckBox="True" Text="Parent" Expanded="True"><iewc:TreeNode NodeData="dfss" CheckBox="True" Text="Node1"></iewc:TreeNode></iewc:TreeNode></iewc:TreeView


when i run i this i'm getting the output like this

Parent Node1

why it is so

thanks in advance
 
you need to copy the behaviors to the aspnet_client folder in web root. the
treeview uses these behaviors to determine how to display itself. Please
read the installation instructions

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Prasanth said:
i just downloaded treeview control,i'm using framework 1.1

Why the check box is not visible in my treeview control

the following is my code


<iewc:TreeView id="TreeView2" style="Z-INDEX: 101; LEFT: 8px; POSITION:
absolute; TOP: 8px" runat="server"
ShowPlus="False" SystemImagesPath="C:\Inetpub\wwwroot\aspnet_client\system_web\1_1_4322\1_0\t
reeimages/"
ExpandLevel="1"><iewc:TreeNode NodeData="fvhghgh" Checked="True"
CheckBox="True" Text="Parent" Expanded="True"><iewc:TreeNode NodeData="dfss"
CheckBox="True"
 
Back
Top