or

void rtvCustomTags_Editing(object sender, Telerik.WinControls.UI.TreeNodeEditingEventArgs e) { e.Editor.Value = e.Node.Text; }
If I wanted to select the first Group "First Group" and on basis for that i wanted to show message or call any other event...this.radListView1.Groups.Add(new ListViewDataItemGroup("First Group"));this.radListView1.Groups.Add(new ListViewDataItemGroup("Second Group"));this.radListView1.Items[0].Group = this.radListView1.Groups[0];this.radListView1.Items[1].Group = this.radListView1.Groups[0];this.radListView1.Items[2].Group = this.radListView1.Groups[1];this.radListView1.Items[3].Group = this.radListView1.Groups[1];
