BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi Muhammad,
Thanks for using Syncfusion product.
As now your requirement of getting Resource name through context menu can be achieved by using AppointmentEditorOpening event or ContextMenuOpening event. Based on your requirement we have created a simple sample using AppointmentEditorOpening event .Please find the sample in the below link.
Sample Link: Schedule_ResourceName
Note:
In the above sample we have displayed resource name using e.SelectedResource argument in the AppointmentEditorOpening event. Please refer the below code snippet.
async void schedule_AppointmentEditorOpening(object sender, Syncfusion.UI.Xaml.Schedule.AppointmentEditorOpeningEventArgs e) { string Rname = (e.SelectedResource[0] as Resource).DisplayName; MessageDialog MD= new MessageDialog("Selected resouce name="+Rname); await MD.ShowAsync(); } |
Please let us know if you have any concerns.
Regards,
Vigneshkumar R.
Hi Muhammad,
As of now we don’t have support for getting delete event from default Context menu of Schedule control. But your requirement can be achieved by overriding the default radial menu of Schedule. Please refer the below KB articles for more details
KB Link: http://www.syncfusion.com/kb/2686/how-to-customize-the-context-menu-in-sfschedule
Please let me know, if you have any query.
Regards,
Nijamudeen M.