AllowAdd = true;
When I right-click a node and choose "New", I want to make sure that the Tag of RadTreeNode is set to some important data. I'd expect the CreateNode event to solve this:
private void radTreeView_CreateNode(object sender, CreateTreeNodeEventArgs e)
{
e.Node.Tag = obj;
}
However, this event is not called when I choose "New". Is this a bug or a feature?
When I right-click a node and choose "New", I want to make sure that the Tag of RadTreeNode is set to some important data. I'd expect the CreateNode event to solve this:
private void radTreeView_CreateNode(object sender, CreateTreeNodeEventArgs e)
{
e.Node.Tag = obj;
}
However, this event is not called when I choose "New". Is this a bug or a feature?