How would I implement a treeview where a user could only select nodes at the tip of the tree (i.e. "leaves")? I've tried "rtn.Enabled = false;", "rtn.PostBack = false;" (since I embedded the RadTreeView in a RadComboBox control), and "rtn.Checkable = false;" for the RadTreeNode, all which provide part of the functionality I need, but either provide too much ("Enabled = false" makes it so I can't select the node, but then I can't expand the node, either), or not enough ("Checkable = false" doesn't apply when I haven't added checkboxes). Did I miss a setting for this?