I added a calendar object with the default view to MONTH, for some reason when I click on any of the days the _DayClicked(date As String) does not fire up, below is the code where I initialize the object.
and here are the events that are supposed to fire up when clicking on any day.
Is this a bug or am I missing something here?
I noticed that on the Demo the ABMaterial version 4.3 is being used and when testing on the Demo project, the _DayClicked(date As String) events gets raised just fine, I started working on my project with the latest version so I can't just go back to version 4.3.
Walter
Calendar Object:
DateTime.DateFormat = "yyyy-MM-dd"
Log("today is: " & DateTime.Date(DateTime.Now))
calendar.Initialize(page, "calendar1", DateTime.Date(DateTime.Now), ABM.FIRSTDAYOFWEEK_MONDAY, "en", ABM.CALENDAR_DEFAULTVIEW_MONTH, "calendartheme")
calendar.Editable = True
calendar.UseTheme("calendartheme")
and here are the events that are supposed to fire up when clicking on any day.
Calendar Events:
Sub calendar1_DayClicked(date As String)
Log("date clicked: " & date)
End Sub
Sub calendar1_EventClicked(eventId As String)
Log("event clicked: " & eventId)
End Sub
Sub calendar1_FetchData(dateStart As String, dateEnd As String)
Log("fetchData: " & dateStart & " / " & dateEnd)
End Sub
Is this a bug or am I missing something here?
I noticed that on the Demo the ABMaterial version 4.3 is being used and when testing on the Demo project, the _DayClicked(date As String) events gets raised just fine, I started working on my project with the latest version so I can't just go back to version 4.3.
Walter