Hi
I have a databing routine on a treeview which works fine there after i do this
Code: Visual Basic.NET
Dim Binding As New EO.Web.DataBinding()
Binding.DataField = "SecurityBitNumber"
Binding.Property = "Value"
tvPermissions.Bindings.Add(Binding)
Dim Allow As New EO.Web.DataBinding()
Allow.Depth = 2
Allow.DataField = "Allow"
Allow.Property = "Checked"
tvPermissions.Bindings.Add(Allow)
This first binding works fine for setting the value of the node.
the seond one is where i want to check the node but nothing happens.
Has this got something to do with the depth setting, or do i have to iterate through all nodes and then set the checked value.
Thanks in advance
Brandon