Tree view Control

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

Guest

How do I selectively refresh a Node in Tree view.

Treeview is populated from the database, say I'm displaying Manager and Employees associated with Managers. For a Selected manager I might Add/Remove Employee, and I like to refresh just the Manager node. How do I do this?

Thanks In Advance

Selva
 
Get the parent node representing the Manager using the Parent property from
the currently selected Employee node.
Remove the Employee node from the Managers ChildNodes collection.


Chris

Selva said:
How do I selectively refresh a Node in Tree view.

Treeview is populated from the database, say I'm displaying Manager and
Employees associated with Managers. For a Selected manager I might
Add/Remove Employee, and I like to refresh just the Manager node. How do I
do this?
 
Back
Top