or
radScheduler1.Appointments.CollectionChanged += new NotifyCollectionChangedEventHandler(Appointments_CollectionChanged);public event ControlAddInEventHandler OnAppointmentsCollectionChanged;void Appointments_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { try { if (OnAppointmentsCollectionChanged != null) { switch (e.Action) { case NotifyCollectionChangedAction.Add: foreach (Appointment ap in e.NewItems) { OnAppointmentsCollectionChanged(1, ap.Subject); } break; case NotifyCollectionChangedAction.ItemChanged: case NotifyCollectionChangedAction.Remove: foreach (Appointment ap in e.OldItems) { OnAppointmentsCollectionChanged(2, ap.Subject); } break; default: break; } } } catch (Exception ex) { OnAppointmentsCollectionChanged(3, ex.Message); } }Hy everyone
I have already ask this. but my post was lost.
The telerik forum has a problem with the server, the message was.
"It seems there was a problem with our server. Try reloading the page."
So i put again this post , I hope this time it don´t vanish.
I want to customize a summary group on the radgridview, I have this.
---Group 1 Total A
-------Group 2 Total B
------------------Group 3 Total C
------------------Group 4 Total D
I don´t want to display the total B only Total C and Total D and Total A must be (Total C + Total D).
How can achieve this.
Thanks in advance.
jolynice