or
Hi,
if I try to add nodes with the nodes designer everything works fine except, there is no way to accept the changes. The nodes editor dialog has no accept button or something similar. Using the return doesn't help, too. Thereto, see attached image.
Regards
Martin
| private void rcbElement_SelectedIndexChanged(object sender, EventArgs e) |
| { |
| RadComboBoxEditorElement rcbe = (RadComboBoxEditorElement)sender; |
| rcbe.Text = (rcbe.Tag.ToString() == "" ? "" : rcbe.Tag + (rcbe.Text == "" ? "" : " - ")) + rcbe.Text; |
| rcbe.SelectedText = ""; |
| rcbe.Tag = rcbe.Text; |
| } |
| using Telerik.WinControls.UI.Docking; |
| public class myControl : DocumentWindow { } |