BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Puneeth,
Please find the response for the Schedule related queries
below,
Query 1. Create an
appointment from my back end (database)data instead of front end.
You requirement can be achieved by the AppointmentMapping feature
of the SfSchedule, through this support you can map the appropriate properties.
We have created a simple sample for the sample, please find
the sample in the attachment.
In the provided sample, we have used the following code
snippet for Appointment Mapping
[Code Snippet] <syncfusion:SfSchedule.AppointmentMapping> <syncfusion:ScheduleAppointmentMapping StartTimeMapping="AppStartTime"
EndTimeMapping="AppEndTime"
SubjectMapping="AppSubject"
AppointmentBackgroundMapping="AppBackground"
LocationMapping="Where" </syncfusion:SfSchedule.AppointmentMapping> |
Query 2. To show the
list box with details
Your requirement can be achieved by cancel the default
context menu in the ContextMenuOpening event of the SfSchedule.
Please find the code snippet for the same.
[Code Snippet] void
schedule_ContextMenuOpening(object sender, ContextMenuOpeningEventArgs e) { e.Cancel = true; } |
In the provided sample we have also stopped the default
context menu and displayed a list box.
Query 3. To block DefaultAppointment
Editor in Schedule
Your requirement can be achieved by cancel the default
context menu in the AppointmentEditorOpening event of the SfSchedule.
Please find the code snippet for the same.
[Code Snippet] void
Schedule_AppointmentEditorOpening(object sender, AppointmentEditorOpeningEventArgs e) {
e.Cancel = true;
} |
In the provided sample we have also stopped the default AppointmentEditor
of the Schedule.
If the provided solution doesn’t meet you requirement please
revert us back with more information so that we could assist you better.
Please let us know, if you need any further assistance.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
Thanks for your update, feel free to contact us.
We are happy to assist you as always.
Best Regards,
Joy Oyiess Rex K
Hi Puneeth,
Thanks for your interest in Syncfusion products.
You may contact salessupport@syncfusion.com
for further assistance.
We are happy to assist you.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
In Windows 8.1 we are facing some issues in some of our
controls, and we are working on this. The complete support for Windows 8.1 will
be available from our upcoming volume release (Dec, 2013).
Please let us know, if you have any concerns.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
Yes, while upgrading to windows
8.1 we have faced certain issues while flipping in the Schedule, but we have already fixed those issues and it
will be available from our next volume release(Dec 2013).
We have attached the patch dll with this, to resolve the
mentioned issue,
Replace the theme files from the provided folder in both
the below locations,
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\Assemblies for WinRT\Syncfusion.SfSchedule.WinRT\Themes
and
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\SDK\Redist\CommonConfigurationeutral\Syncfusion.SfSchedule.WinRT\Themes
Replace the *.dll and *.pri files
from the provided folder in both the below locations,
C:\Program Files
(x86)\Syncfusion\Essential Studio\11.3.0.30\Assemblies for WinRT
and
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\SDK\References\CommonConfigurationeutral
Please let us know, if you need
any further assistance.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
Please ignore our previous update.
Yes, while upgrading to windows 8.1 we have faced certain
issues while flipping in the Schedule, but we have already fixed those
issues and it will be available from our next volume release(Dec 2013).
We have attached the patch dll with this, to resolve the
mentioned issue,
Replace the theme files from the provided folder in both the
below locations,
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\Assemblies for WinRT\Syncfusion.SfSchedule.WinRT\Themes
and
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\SDK\Redist\CommonConfigurationeutral\Syncfusion.SfSchedule.WinRT\Themes
Replace the *.dll and *.pri files from the provided folder
in both the below locations,
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\Assemblies for WinRT
and
C:\Program Files (x86)\Syncfusion\Essential
Studio\11.3.0.30\SDK\References\CommonConfigurationeutral
Please let us know, if you need any further assistance.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
Thanks for your previous update.
Please find the response for your
previous queries below,
Regarding Query #1:
We have prepared a sample to
address your requirement of 'changing second DatePicker value with some
difference based first DatePicker'. In the sample we have used 'ValueChanged'
event of first SfDatePicker to update the second.
Please find the sample in below
link,
Regarding Query #2:
We have also prepared your sample
to achieve your requirement of “ Get the Selected Date Informations such as
SelectedDate and Appointments(if
available on the selected day)”, please find the sample in the attachment.
In the provided sample we have
get the selected Date and Appointments in the ScheduleTapped event of the
SfSchedule. Please find the code snippet below for the same.
[Code Snippet] void schedule1_ScheduleTapped(object sender, ScheduleTappedEventArgs e) { this.date_TextBlock.Text =
e.SelectedDate.ToString().Remove(11); DateTime date = (DateTime)e.SelectedDate; var appointments = from apps in (sender as SfSchedule).Appointments where apps.StartTime.Date == date.Date
select apps; this.Apps_LstBox.ItemsSource = (IEnumerable)appointments; this.Apps_LstBox.DisplayMemberPath = "Subject"; } |
Please let us know, if you need any further assistance.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
We appreciate your patience.
Please find the response for your queries given below.
Regarding Unique ID
for each appointment.
The RecurrenceID property of the ScheduleAppointment has been
calculated from its hash code, so we can use this property for unique ID.
Note:- This property is available from our latest WinRT SP release(v11.3.0.32).
Regarding Clear Custom Pop-up
We don’t have any direct support
to listen the visible dates change while Navigation , but your
requirement can be achieved by using the VisibleDates property of the
SfSchedule. This is a property contains the visible dates collection of
SfSchedule. This property gets changed while we navigate the view.
So when we bind the VisibleDates
property of SfSchedule to a Local property in application, then local property
gets changed when VisibleDates property gets changed. By listening to the local
property changed (clear the pop –up in its set{}) we can perform required
action.
Regarding MoveToDate
In Order to move to specific
date, you can use the MoveToDate() method of the SfSchedule, where you need to pass
the required date in that method.
Please let us know, if you need
any further assistance.
Regards,
Joy Oyiess Rex K
Hi Puneeth,
Thanks for your previous update.
Query #1: Regarding accessing RecurrenceID.
The RecurrenceID property of
ScheduleAppointments is read-only property and this property is available only
after WinRT SP v11.3.0.32. We have prepared a simple sample for the same,
please find the sample in the attachment.
In the provided sample we have
get the RecurrenceID for the SelectedAppointment in the ScheduleTapped event of
the Schedule.
Query #2: Regarding events for Save/Cancel/Delete button.
Currently we don’t provide event support
for Save/Cancel and Delete buttons in our ScheduleAppointmentEditor.
Please let us know, if you have
any concerns.
Regards,
Joy Oyiess Rex K