My Schedule:
#Question 1:

Note that the weeks and days are not aligned... Why??? .... And then I click in the week 'mar. 01 - mar. 07' ... and magic ... now aligned all ...
Error?? Solution???
# Question 2:
My code ...
@(Html.EJ().Schedule("SchTareas")
.Width("100%")
.Height("525px")
.CurrentView(CurrentView.Month)
.Localization("es-ES")
.Views(new List<string> { "Month" })
.CurrentDate(DateTime.Today)
.CurrentView(CurrentView.Month)
.ScheduleFields(fields => fields.Datasource((IEnumerable)Model)
.IdField("Id")
.SubjectField("Subject")
.StartTimeField("Date")
.EndTimeField("Date")
.AlldayField("AllDay"))
.Render()
)
You note that: .Location("es-ES") and .CurrentDate(DateTime.Today) [15 August 2014] ... Then It starts ...
mar. 2015????? Why????
Code generated ....
<script type='text/javascript'>$(function($){$("#SchTareas").ejSchedule({views:["Month"],currentView:"month",width:"100%",height:"525px",currentDate:"15/08/2014",localization:"es-ES" ....
So I see this taking the next date... day 08, month 15 (12 + 3) and then year 2014 + 1 = 2015 .... I don´t unserstand ... Why???, Solution???
Can you help me??