I am using ExtendedCalendarView
. How do I use the function setMinDate()
on ExtendedCalendarView
?
Asked
Active
Viewed 167 times
0

user2731584
- 926
- 1
- 7
- 17
-
Can you clarify what min date you are referring, i dont see any column with that name in the ExtendedCalendarView – Shiv Dec 23 '14 at 10:36
-
If you use CalendarView, you will get the option to limit the starting date to a date of your choice. That function is called - setMinDate(). I want to know how to achieve the same using ExtendedCalendarView – user2731584 Dec 23 '14 at 10:38
1 Answers
0
ExtendedCalendarView is not an extension of CalendarView, hence not all the methods available in CalendarView will be available under ExtendedCalendarView. Looking at the document in this link, i see we can set only the below fields
Current database columns
id - database id of the event
event (Text) - name of the event
location (Text) - where the event is
description (Text) - information about the event
start (Integer) - when the event starts
end (Integer) - when the event ends
start_day (Integer) - julian start day
end_day (Integer) - julian end day
color (Integer) - the color of the event

Shiv
- 689
- 8
- 23