I don't seam to able to edit my resource list in a Reoccurring Exception. I am using a custom Edit Appointment Dialogue with the following code in the ApplySettingsToEvent, I am sure there is something i may need to add/correct but this has got me stumped.
Protected Overrides Sub ApplySettingsToEvent(ByVal ev As Telerik.WinControls.UI.IEvent)
MyBase.ApplySettingsToEvent(ev)
ev.ResourceIds.BeginItemUpdate()
ev.ResourceIds.Clear()
For Each item As RadListDataItem In listResources1.SelectedItems
Dim resourceId As EventId = TryCast(item.Value, EventId)
If Not ev.ResourceIds.Contains(resourceId) Then
ev.ResourceIds.Add(resourceId)
End If
Next
ev.ResourceIds.EndItemUpdate()
End Sub
Protected Overrides Sub ApplySettingsToEvent(ByVal ev As Telerik.WinControls.UI.IEvent)
MyBase.ApplySettingsToEvent(ev)
ev.ResourceIds.BeginItemUpdate()
ev.ResourceIds.Clear()
For Each item As RadListDataItem In listResources1.SelectedItems
Dim resourceId As EventId = TryCast(item.Value, EventId)
If Not ev.ResourceIds.Contains(resourceId) Then
ev.ResourceIds.Add(resourceId)
End If
Next
ev.ResourceIds.EndItemUpdate()
End Sub