Hi Support:
We are using the component version 15.2600.0.40.
Today we noticed that the appointments in the Schedule control (in every view) are not adjusted by the timezone information that is stored in the database table (StartTimeZone and EndTimeZone columns).
In the past the appointments dates were rendered properly, but now the timezones are not being applied in the UI.
What do you think could be causing that the timezone information is being ignored by the Schedule control.
This is our control definition:
<ej-schedule id="Schedule1" show-quick-window="false"
current-date="DateTime.Now"
time-zone="@ViewData["TimeZone"]"
current-view="Month"
show-all-day-row="true"
create="onCreate"
load="onLoad"
navigation="onNavigation"
enable-load-on-demand="false"
action-complete="onComplete"
start-hour="8" end-hour="17"
is-dst="true" show-weekend="false"
appointment-window-open="onAppointmentWindowOpen">
<e-time-scale enable="false"></e-time-scale>
<e-appointment-settings id="ID" start-time='"StartTime"' end-time='"EndTime"'
start-time-zone='"StartTimeZone"' end-time-zone='"EndTimeZone"'
all-day='"AllDay"' recurrence='"Recurrence"' recurrence-rule='"RecurrenceRule"'>
<e-datamanager url="GetData" crud-url="Schedule/Batch" adaptor="UrlAdaptor"></e-datamanager>
</e-appointment-settings>
</ej-schedule>
Thanks in advance.
David