Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I will have a treeview with a root node initially and i will have context menu to be opened when i right click on the root node. AFter that i will save a file to save my data in to that. Alng with that i will load a child node for that . So that tree will looks as follows

  Root
     |-> some.txt
         |-> A(child for some.txt)

And if i right click on the Node A i will have a form that user will fill some data and save it. If the save was successful i will have my treeview as follows

Root
  |-> some.txt
    |-> A(child for some.txt)
       |->B(Child for A)

Now what i need if the use again right clicks on A node i would like to show some error message or i would like to have that node as non selectable field.

Any idea please

share|improve this question

1 Answer

up vote 0 down vote accepted

In the same place where you are opening your form for the node that was right-clicked, you can do a check for whether or not that node has children.

if(myNode.Nodes.Count == 0)
{
   //Open your form
}
else
{
   //Show error or perform alternative actions
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.