BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi yapwen,
Sorry about the inconvenience caused.
As of now we don’t have any support to customize the SfSchedule`s default appointment editor in VB (WPF). But you can customize the Appointment Editor based on your requirement by overriding the default editor. Please refer the following KB.
KB Link: http://www.syncfusion.com/kb/2701/how-to-create-a-customized-appointment-editor-in-sfschedule
Sample Location: C:\Users\{USERNAME}\AppData\Local\Syncfusion\EssentialStudio\13.2.0.29\WPF\SfSchedule.WPF\Samples\CustomizationDemo\CS
We have prepared a same sample using VB (WPF). Please find the sample below.
VB Sample: EditorCustomization_VB
Please let us know, if you have any queries.
Regards,
Nijamudeen M.
<syncfusion:SfSchedule x:Name="Schedule" AllowEditing="False" ScheduleType="Week" ShowAppointmentNavigationButtons="True" IsHighLightWorkingHours="True"
Background="White" TimeInterval="OneHour" Margin="20">
>>>>>>>>>>
Private Sub Schedule_AppointmentEditorOpening(ByVal sender As Object, ByVal e As AppointmentEditorOpeningEventArgs)
e.Cancel = True
If (Schedule.AllowEditing) Then
AddDataContext = New BindingClass() With {.CurrentSelectedDate = e.StartTime, .Appointment = e.Appointment}
If e.Appointment IsNot Nothing Then
EditAppointment()
Else
customeEditor.AppType.SelectedIndex = 0
AddAppointment()
End If
End If
End Sub
>>>>>>>>>>>>>
Private Sub Schedule_PopupMenuOpening(ByVal sender As Object, ByVal e As ContextMenuOpeningEventArgs)
RadialPopup.IsOpen = False
e.Cancel = True
If Schedule.AllowEditing Then
|