Hello
I have my data added like this way Added for items and two groups and assigned as below.
How can i do that ?
I have my data added like this way Added for items and two groups and assigned as below.
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];
How can i do that ?