This view was completely rewrite again
Hey all, after almost a week of work and much frustration, I am proud to share with you a calendar view.
The view is inspired on the calendar view in the outlook app.
This library is not free, because, it cost a lot of time and gray hair to create such views.
Donations from 8€ are valid. (You can donate any amount you want )
Please write CalendarAdvanced in the order description, thanks.
or buy it now directly
Thanks for your understanding.
NEW AppointmentType1
AppointmentType1,AppointmentType2,AppointmentType3
Collapsed
Expanded
seamless transition between the two modes
You can display up to 6 rows
You can disable the Expandable to use the view in only one mode, then the bottom drag bar is not visible.
B4J is currently not supported, but will be in the near future.
B4J is now supported.
Make sure you are using ASViewPager V1.24+
On B4I you needGestureRecognizer Download the .bas file in the attachment No longer needed since 3.01+
Examples:
Call this in B4XPage_Created or on Form Load and call this after you change something on the body, but only once at runtime
ASCalendarAdvanced
Author: Alexander Stolte
Version: 3.00
If you have features or something is still missing, let me know.
Changelog
[B4X] [XUI] AS CalendarExpandable? [Payware]
This view was developed from scratch based on the AS_DatePicker and the AS_CalendarViewWeek from the AS_Scheduler. Both combined results in a fantastic new view. Those who have already purchased AS_CalendarAdvanced can use the same key to use this library. This library is not free, because, it...
www.b4x.com
The view is inspired on the calendar view in the outlook app.
This library is not free, because, it cost a lot of time and gray hair to create such views.
Donations from 8€ are valid. (You can donate any amount you want )
Please write CalendarAdvanced in the order description, thanks.
or buy it now directly
AS CalendarExpandable
The view is inspired on the calendar view in the outlook app.https://www.b4x.com/android/forum/threads/b4x-xui-as-calendarexpandable📅-payware.146808/
payhip.com
- Donate
- I will send you an e-mail with the code to decrypt the .zip file
- Done
NEW AppointmentType1
AppointmentType1,AppointmentType2,AppointmentType3
Collapsed
Expanded
seamless transition between the two modes
You can display up to 6 rows
You can disable the Expandable to use the view in only one mode, then the bottom drag bar is not visible.
B4J is now supported.
B4j: jXUI,jDateUtils,jReflection,xCustomListView,ASViewPager
B4a: XUi,DateUtils,Reflection,xCustomListView,ASViewPager
B4i: iXUI,iDateUtils,xCustomListView,ASViewPager,GestureRecognizer
B4a: XUi,DateUtils,Reflection,xCustomListView,ASViewPager
B4i: iXUI,iDateUtils,xCustomListView,ASViewPager,GestureRecognizer
On B4I you need
Examples:
change body month names and header week names:
ASCalendarAdvanced1.WeekNameShort = ASCalendarAdvanced1.CreateASCalendarAdvanced_WeekNameShort("Mon","Tue","Wed","Thu","Fri","Sat","Sun")
ASCalendarAdvanced1.MonthNameShort = ASCalendarAdvanced1.CreateASCalendarAdvanced_MonthNameShort("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec")
ASCalendarAdvanced1.UpdateBody 'Update all body items to the new style/text
ASCalendarAdvanced1.UpdateHeader 'Update all header items to the new style/text
B4X:
'Call this to Build the calendar, unfortunately this is needed, otherwise runtime errors will occur
'Call this after you set all properties you want
ASCalendarAdvanced1.CreateCalendar
Mark all Sundays as a SpecialDay:
Sub ASCalendarAdvanced1_VisibleRangeChanged(StartDate As Long,EndDate As Long)
Dim sundays As List = ASCalendarAdvanced1.GetDaysBetween2Dates(StartDate,EndDate, 1)
For Each s As Long In sundays
ASCalendarAdvanced1.AddSpecialDay(s,xui.Color_ARGB(255,221, 95, 96),"official_holiday")
Next
ASCalendarAdvanced1.CommitSpecialDays
End Sub
ASCalendarAdvanced
Author: Alexander Stolte
Version: 3.00
- ASCalendarAdvanced
- Events:
- HeightChanged (Height As Float)
- SelectedDateChanged (Date As Long)
- TouchDown
- TouchUp
- VisibleRangeChange (StartDate As Long, EndDate As Long)
- VisibleRangeChanged (StartDate As Long, EndDate As Long)
- Fields:
- AppointmentType1BottomAppointmentTyp2Top As Boolean
- mBase As B4XView
- Tag As Object
- Functions:
- AddAppointmentType1 (date As Long, color As Int) As String
- AddAppointmentType2 (date As Long, color As Int, text As String, text_color As Int) As String
- AddAppointmentType3 (start_date As Long, end_date As Long, color As Int) As String
- AddSpecialDay (date As Long, color As Int, identifier As String) As String
Adds a new special day - call CommitSpecialDays if youre done with adding
color - Text Color
value - e.g. "official_holiday", "birthday","Vacation" - Back2CurrentDate As String
Slides Back or Forward to the Current Date - Base_Resize (Width As Double, Height As Double) As String
- Class_Globals As String
- Close As String
- CommitSpecialDays As String
Commits all new visible special dates - CommitStyleChanges As String
a simple Base_Resize, but all visible items ar updated - CreateASCalendarAdvanced_AppointmentType1 (date As Long, color As Int) As ASCalendarAdvanced_AppointmentType1
simple dot under date - CreateASCalendarAdvanced_AppointmentType2 (date As Long, color As Int, text As String, text_color As Int) As ASCalendarAdvanced_AppointmentType2
short text above date - CreateASCalendarAdvanced_AppointmentType2_ItemProperties (xfont As B4XFont, height As Float, padding As Float, corner_radius As Float) As ASCalendarAdvanced_AppointmentType2_ItemProperties
- CreateASCalendarAdvanced_AppointmentType3 (start_date As Long, end_date As Long, color As Int) As ASCalendarAdvanced_AppointmentType3
- CreateASCalendarAdvanced_AppointmentType3_ItemProperties (height As Float, alpha_color As Int, corner_radius As Float) As ASCalendarAdvanced_AppointmentType3_ItemProperties
alpha_color - value between 0 - 255, its the aplha for the range appointments - CreateASCalendarAdvanced_BodyTextProperties (TextColor As Int, TextFont As B4XFont, TextAlignment_Vertical As String, TextAlignment_Horizontal As String) As ASCalendarAdvanced_BodyTextProperties
- CreateASCalendarAdvanced_ExtraInfosTextProperties (TextColor As Int, TextFont As B4XFont, TextAlignment_Vertical As String, TextAlignment_Horizontal As String) As ASCalendarAdvanced_ExtraInfosTextProperties
- CreateASCalendarAdvanced_HeaderTextProperties (TextColor As Int, TextFont As B4XFont, TextAlignment_Vertical As String, TextAlignment_Horizontal As String) As ASCalendarAdvanced_HeaderTextProperties
- CreateASCalendarAdvanced_MonthNameShort (January As String, February As String, March As String, April As String, May As String, June As String, July As String, August As String, September As String, October As String, November As String, December As String) As ASCalendarAdvanced_MonthNameShort
- CreateASCalendarAdvanced_SpecialDay (date As Long, color As Int, identifier As String) As ASCalendarAdvanced_SpecialDay
- CreateASCalendarAdvanced_WeekNameShort (Monday As String, Tuesday As String, Wednesday As String, Thursday As String, Friday As String, Saturday As String, Sunday As String) As ASCalendarAdvanced_WeekNameShort
- CreateCalendar
call this function only once - DesignerCreateView (Base As Object, Lbl As Label, Props As Map)
Base type must be Object - Expand As String
- getAppointmentType2_ItemPropertiest As ASCalendarAdvanced_AppointmentType2_ItemProperties
- getAppointmentType3_ItemPropertiest As ASCalendarAdvanced_AppointmentType3_ItemProperties
- getBodyTextProperties As ASCalendarAdvanced_BodyTextProperties
Call UpdateBody if you change the properties - getBottomHeight As Float
gets or sets the height of the drag-panel on the bottom, to expand or collapse the view
Default 15dip - GetDaysBetween2Dates (StartDate As Long, EndDate As Long, RequiredDayOfWeek As Int) As List
RequiredDayOfWeek - week starts at 1=sunday,2=monday...
Call it if you are done adding new special days, makes this way makes the performance better - GetExpandedViewHeight As Float
gets the view height of the expanded view height - getExtraInfosTextProperties As ASCalendarAdvanced_ExtraInfosTextProperties
- getHeaderPanel As B4XView
- getHeaderTextProperties As ASCalendarAdvanced_HeaderTextProperties
Call UpdateHeader if you change the properties - getMonthNameShort As ASCalendarAdvanced_MonthNameShort
- getSelectedDate As Long
gets or sets the selected date - GetSpecialDayAt (date As Long) As ASCalendarAdvanced_SpecialDay
Gets a ASCalendarAdvanced_SpecialDay object on a date if exists - getStartDate As Long
Set this date before you call CreateCalendar - getVisibleDateRange As Map
Public Sub CommitViewPager
xASVP_Horizontal.Base_Resize(mBase.wi
End Sub
gets the current visible date range as map
<code>Dim tmp_m As Map = ASCalendarAdvanced1.VisibleDateRange
Log("StartDate: " & DateUtils.TicksToString(tmp_m.Get("StartDate")))
Log("EndDate: " & DateUtils.TicksToString(tmp_m.Get("EndDate")))</code> - getWeekNameShort As ASCalendarAdvanced_WeekNameShort
- Initialize (Callback As Object, EventName As String) As String
- IsInitialized As Boolean
Tests whether the object has been initialized. - Month2WeekKeepSelectedWeekVisible (keep As Boolean) As String
If you switch from MonthView to WeekView then the selected day keeps visible
Default: True - NextWeek As String
Scrolls to the next week or month it depends on the expanded state - PreviousWeek As String
Scrolls to the previous week or month it depends on the expanded state - RemoveAppointmentType1 (date As Long) As String
if there are multiple AppointmentType1 on the date, then all of them will be removed - RemoveAppointmentType2 (date As Long) As String
removes AppointmentType2 on that day
call CommitStyleChanges if youre done with removing - RemoveOneAppointmentType1 (date As Long) As String
if there are multiple AppointmentType1 on the date, then one of them will be removed
call CommitStyleChanges if youre done with removing - RemoveSpecialDay (date As Long) As String
Removes a special day - call CommitSpecialDays if youre done with adding - Reset (ApType1 As Boolean, ApType2 As Boolean, ApType3 As Boolean, SpecialDays As Boolean) As String
removes all appointments or special days. Set to "True" to control what should be reset
call CommitStyleChanges if youre resetting the SpecialDays - Scroll2Date (Date As Long)
Slides Back or Forward to a special date - setAppointmentType2_ItemPropertiest (ItemProperties As ASCalendarAdvanced_AppointmentType2_ItemProperties) As String
- setAppointmentType3_ItemPropertiest (ItemProperties As ASCalendarAdvanced_AppointmentType3_ItemProperties) As String
- setBodyColor (Color As Int) As String
sets the body color
the complete calendar is rebuilt at the action - setBodyTextProperties (BodyTextProperties As ASCalendarAdvanced_BodyTextProperties) As String
- setBottomColor (Color As Int) As String
sets the bottom color - setBottomHeight (height As Float) As String
gets or sets the height of the drag-panel on the bottom, to expand or collapse the view
Default 15dip
call CommitStyleChanges if you change the value - setExtraInfosTextProperties (ExtraInfosTextProperties As ASCalendarAdvanced_ExtraInfosTextProperties) As String
- setExtraItemGap (gap As Float) As String
sets the ExtraItemGab - is to prevent the font from covering the month number
Default 6dip
call CommitStyleChanges if you change the value - setFirstDayOfWeek (number As Int) As String
1-7 - set this before you call CreateCalendar
Friday = 1
Thursday = 2
Wednesday = 3
Tuesday = 4
Monday = 5
Sunday = 6
Saturday = 7 - setHeaderColor (Color As Int) As String
sets the Header Color - setHeaderTextProperties (HeaderTextProperties As ASCalendarAdvanced_HeaderTextProperties) As String
- setKeepSelectedDate (keep As Boolean) As String
Default: False
WeekView: The same week day is selected if you switch to the next week e.g. Monday 05.07.201-> Monday 12.07.2021
MonthView: The same date is selected if you switch to the next month e.g 22.07.2021-> 22.08.2021 - setLimit2Forward (OnlyFuture As Boolean) As String
Limit the calendar to the current time period and the future
Default: False - SetLimitRange (StartMonth As Long, EndMonth As Long) As String
Limit the calendar to a certain range of months
Set one of them to 0 if you dont want a limit - setMonthNameShort (MonthNameShort As ASCalendarAdvanced_MonthNameShort) As String
- setOtherMonthBackgroundColor (Color As Int) As String
sets the background color of the other month when 2 months are displayed in one
the complete calendar is rebuilt at the action - setSelectedDate (date As Long) As String
gets or sets the selected date - setShowFirstWeekOfMonthInFirstRow (show As Boolean) As String
if the calendar is expanded, then the 1st week of the month will be in the 1st row - setShowOtherMonths (show As Boolean) As String
Only in MonthView - set it to False if you dont show the days from the next or previous month
Default: True - setStartDate (date As Long) As String
Set this date before you call CreateCalendar - setWeekNameShort (WeekNameShort As ASCalendarAdvanced_WeekNameShort) As String
- SpecialDayExists (date As Long) As Boolean
Returns True if a special day is already added to a date - UpdateAll As String
UpdateBody and UpdateHeader in one - UpdateBody As String
- UpdateHeader As String
- Properties:
- AppointmentType2_ItemPropertiest As ASCalendarAdvanced_AppointmentType2_ItemProperties
- AppointmentType3_ItemPropertiest As ASCalendarAdvanced_AppointmentType3_ItemProperties
- BodyColor
sets the body color
the complete calendar is rebuilt at the action - BodyTextProperties As ASCalendarAdvanced_BodyTextProperties
Call UpdateBody if you change the properties - BottomColor
sets the bottom color - BottomHeight As Float
gets or sets the height of the drag-panel on the bottom, to expand or collapse the view
Default 15dip - ExtraInfosTextProperties As ASCalendarAdvanced_ExtraInfosTextProperties
- ExtraItemGap
sets the ExtraItemGab - is to prevent the font from covering the month number
Default 6dip
call CommitStyleChanges if you change the value - FirstDayOfWeek
1-7 - set this before you call CreateCalendar
Friday = 1
Thursday = 2
Wednesday = 3
Tuesday = 4
Monday = 5
Sunday = 6
Saturday = 7 - HeaderColor
sets the Header Color - HeaderPanel As B4XView [read only]
- HeaderTextProperties As ASCalendarAdvanced_HeaderTextProperties
Call UpdateHeader if you change the properties - KeepSelectedDate
Default: False
WeekView: The same week day is selected if you switch to the next week e.g. Monday 05.07.201-> Monday 12.07.2021
MonthView: The same date is selected if you switch to the next month e.g 22.07.2021-> 22.08.2021 - Limit2Forward
Limit the calendar to the current time period and the future
Default: False - MonthNameShort As ASCalendarAdvanced_MonthNameShort
- OtherMonthBackgroundColor
sets the background color of the other month when 2 months are displayed in one
the complete calendar is rebuilt at the action - SelectedDate As Long
gets or sets the selected date - ShowFirstWeekOfMonthInFirstRow
if the calendar is expanded, then the 1st week of the month will be in the 1st row - ShowOtherMonths
Only in MonthView - set it to False if you dont show the days from the next or previous month
Default: True - StartDate As Long
Set this date before you call CreateCalendar - VisibleDateRange As Map [read only]
Public Sub CommitViewPager
xASVP_Horizontal.Base_Resize(mBase.wi
End Sub
gets the current visible date range as map
<code>Dim tmp_m As Map = ASCalendarAdvanced1.VisibleDateRange
Log("StartDate: " & DateUtils.TicksToString(tmp_m.Get("StartDate")))
Log("EndDate: " & DateUtils.TicksToString(tmp_m.Get("EndDate")))</code> - WeekNameShort As ASCalendarAdvanced_WeekNameShort
- Events:
- ASCalendarAdvanced_AppointmentType1
- Fields:
- color As Int
- date As Long
- IsInitialized As Boolean
Tests whether the object has been initialized.
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_AppointmentType2
- Fields:
- color As Int
- date As Long
- IsInitialized As Boolean
Tests whether the object has been initialized. - text As String
- text_color As Int
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_AppointmentType2_ItemProperties
- Fields:
- corner_radius As Float
- height As Float
- IsInitialized As Boolean
Tests whether the object has been initialized. - padding As Float
- xfont As B4XFont
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_AppointmentType3
- Fields:
- color As Int
- end_date As Long
- IsInitialized As Boolean
Tests whether the object has been initialized. - start_date As Long
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_AppointmentType3_ItemProperties
- Fields:
- alpha_color As Int
- corner_radius As Float
- height As Float
- IsInitialized As Boolean
Tests whether the object has been initialized.
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_BodyTextProperties
- Fields:
- IsInitialized As Boolean
Tests whether the object has been initialized. - TextAlignment_Horizontal As String
- TextAlignment_Vertical As String
- TextColor As Int
- TextFont As B4XFont
- IsInitialized As Boolean
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_ExtraInfosTextProperties
- Fields:
- IsInitialized As Boolean
Tests whether the object has been initialized. - TextAlignment_Horizontal As String
- TextAlignment_Vertical As String
- TextColor As Int
- TextFont As B4XFont
- IsInitialized As Boolean
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_HeaderTextProperties
- Fields:
- IsInitialized As Boolean
Tests whether the object has been initialized. - TextAlignment_Horizontal As String
- TextAlignment_Vertical As String
- TextColor As Int
- TextFont As B4XFont
- IsInitialized As Boolean
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_MonthNameShort
- Fields:
- April As String
- August As String
- December As String
- February As String
- IsInitialized As Boolean
Tests whether the object has been initialized. - January As String
- July As String
- June As String
- March As String
- May As String
- November As String
- October As String
- September As String
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_SpecialDay
- Fields:
- color As Int
- date As Long
- identifier As String
- IsInitialized As Boolean
Tests whether the object has been initialized.
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- ASCalendarAdvanced_WeekNameShort
- Fields:
- Friday As String
- IsInitialized As Boolean
Tests whether the object has been initialized. - Monday As String
- Saturday As String
- Sunday As String
- Thursday As String
- Tuesday As String
- Wednesday As String
- Functions:
- Initialize
Initializes the fields to their default value.
- Initialize
- Fields:
- WeekCounter
- Vertical Swipe
- MultiSelect
- HideOtherMonths
- Scroll2NextMonthIfClickOnNextMonth
- AppointmentType1 - automatically display a + symbol when too many have been added
- AppointmentType2 - support of multiple in one day e.g. for symbols
Changelog
- 1.00
- Release
- 1.01
- BugFixes
- Add set ShowFirstWeekOfMonthInFirstRow - if the calendar is expanded, then the 1st week of the month will be in the 1st row - set this to true before you call "CreateCalendar"
- 1.02
- Add get VisibleDateRange- gets the current visible date range as map
- BugFixes if ShowFirstWeekOfMonthInFirstRow is True
- 1.03
- Many BugFixes
- ShowFirstWeekOfMonthInFirstRow is now fully implemented
- 1.04
- B4J Support
- DoubleClick on Bottom to Expand or Collapse
- Depend on Expandable
- DoubleClick on Bottom to Expand or Collapse
- Add Designer Property ShowFirstWeekOfMonthInFirstRow - if the calendar is expanded then the 1st week of the month will be in the 1st row
- B4J Support
- 1.05 (read more about this update)
- Important BugFixes if the view is expanded
- Add AppointmentType1 - dots under a date
- Add SetAppointmentType1 - adds an appointment to a date
- 1.06
- BugFix
- 1.07 (read more about this update)
- SetAppointmentType1 renamed to AddAppointmentType1
- BugFix on VisibleRangeChanged
- Add GetDaysBetween2Dates - Returns a list of dates at a special day in a week e.g. all sundays between 2 dates
- Add AddSpecialDay - Adds a new special day
- 2.00 (read more about this update)
- BugFixes
- Expand with fingers is now smooth
- Add AppointmentType2 - Text Label above date
- Add AddAppointmentType2 - adds an appointment to a date
- Add AppointmentType3 - mark a range between 2 dates
- Add AddAppointmentType3 - adds an range appointment between 2 dates
- Add set and get AppointmentType2_ItemPropertiest - change the properties to customize AppointmentType2 look and feel e.g. corner_radius or padding
- Add set and get AppointmentType3_ItemPropertiest - change the properties to customize AppointmentType3 look and feel e.g. corner_radius or aplha color
- Add get and set BottomHeight - gets or sets the height of the drag-panel on the bottom, to expand or collapse the view
- Add CommitStyleChanges - a simple Base_Resize, but all visible items ar updated
- Add Event TouchDown - fires if the user touch the expand panel
- Add Event TouchUp - fires if the user release the expand panel
- Add Function GetExpandedViewHeight - gets the view height of the expanded view height
- Add RemoveOneAppointmentType1 - if there are multiple AppointmentType1 on the date, then one of them will be removed
- Add RemoveAppointmentType1 - if there are multiple AppointmentType1 on the date, then all of them will be removed
- Add RemoveAppointmentType2 - removes AppointmentType2 on that day
- Add Reset - removes all appointments or special days. Set to "True" to control what should be reset
- Add set ExtraItemGap - is to prevent the font from covering the month number
- 2.01 (read more about this update)
- BugFix - Back2CurrentDay the current day panel has covered the day label
- BugFix - AppointmentType3
- Add get HeaderPanel - gets the header panel (code example)
- Add set and get SelectedDate - gets or sets the selected date
- BugFix - Removing Appointments
- 2.02
- BugFix
- 2.04
- Base_Resize is now public
- Intern Function IIF renamed to iif2
- 2.05 (read more about this update)
- Add StartDate - Set here the date where you want to start - set this before you call CreateCalendar
- Add FirstDayOfWeek - 1-7 - set this before you call CreateCalendar
- 2.06 (read more about this update)
- BugFix New Handling of other Months
- not the whole next month is in a different color, but only the days that are not in the current month
- Add KeepSelectedDate
- Default: False
- WeekView: The same week day is selected if you switch to the next week e.g. Monday 05.07.201-> Monday 12.07.2021
- MonthView: The same date is selected if you switch to the next month e.g 22.07.2021-> 22.08.2021
- Add Month2WeekKeepSelectedWeekVisible - If you switch from MonthView to WeekView then the selected day keeps visible
- Default: True
- Add ShowOtherMonths - Only in MonthView - set it to False if you dont show the days from the next or previous month
- Default: True
- BugFix New Handling of other Months
- 2.07
- BugFix B4A and B4J HeightChanged event is now firing
- 2.08
- Intern Function iif2 removed and the core iif is now used
- B4A V11+ - B4J V9.10+ - B4I V7.50+
- B4I better perfomance on Page Change with ASViewPager V1.18+
- B4I better perfomance on Expand and Collapse with finger and with the functions
- BugFixes
- Intern Function iif2 removed and the core iif is now used
- 2.10 (read more about this update)
- New Event VisibleRangeChange - is triggered before the new page is completely visible.
- Add SetLimitRange - Limit the calendar to a certain range of months
- Set one of them to 0 if you dont want a limit
- 2.11 (read more about this update)
- Designer Property "Expanded" a better handling of the view
- If True the full height is used to display the view expanded
- IF False the full height is used to display the view collapsed
- Old Handling:
- If True the full height is used to display the view collapsed and from the body height the expanded heihgt was calculated
- Designer Property "BodyItemHeightInPercentage" Removed
- was a poor indicator of how big the header is
- Add Desinger Property "HeaderHeight" - Determines the size of the header. The larger the number the less space the items have in the body
- Add Designer Property "KeepSelectedDate"
- Add Designer Porperty "BottomHeight" - the height of the drag-panel on the bottom, to expand or collapse the view
- Add Designer Property "ShowOtherMonths" - Only in MonthView - set it to False if you dont show the days from the next or previous month
- Add Expand - Expands the view
- Add Close - Collsaps the view
- B4J BugFixes
- Designer Property "Expanded" a better handling of the view
- 2.12
- Add set HeaderColor
- Add set BodyColor - the complete calendar is rebuilt at the action
- Add set BottomColor
- Add set OtherMonthBackgroundColor - the complete calendar is rebuilt at the action
- 2.13
- BugFix - The event "VisibleRangeChange" was not triggered when creating the calendar
- 2.14
- Add AppointmentType1BottomAppointmentTyp2Top - If false then AppointmentType1 is on Top and Type2 is on the bottom
- 2.15
- Add set Limit2Forward - Limit the calendar to the current time period and the future - set it to true before CreateCalendar
- Add 2 property descriptions for better understanding
- 2.16
- Add PastDaysTextColor to BodyTextProperties - The text color for days that lie in the past - standard value is -1 (All days have the same color)
- 2.17
- Add KeepAppointmentsVisibleOnSelect - if True, then the appointments are visible if you select the day - Default: False
- BugFixes
- 2.18
- Removes log messages that should not be there
- 2.19
- Add Designer Property FirstDayOfWeek
- VisibleRangeChange and VisibleRangeChanged are now also triggered when you expand the calendar
- BugFixes
- 2.20
- BugFixes
- Add TextAlignment_Horizontal property to AppointmentType2_ItemProperties - LEFT,RIGHT,CENTER
- Default: CENTER
- 2.21 (read more about this update)
- CrashFix - UpdateBody
- Add CurrentDateProperties - you can now customize the current date
- TextColor -TextFont -IndicatorColor -IndicatorCornerRadius -IndicatorHeight
- Add SelectedDateProperties - you can now customize the selected date indicator
- IndicatorColor -IndicatorCornerRadius -IndicatorHeight
- Add AppointmentType1_ItemProperties
- Height
- Default: 5dip
- Padding
- Default: 0dip
- Height
- 2.22
- Add set CurrentDayBehindAppointments - if False then the current day indicator is before the appointments_type3
- Default: True
- The Selected Day Indicator is now always in front
- Add set CurrentDayBehindAppointments - if False then the current day indicator is before the appointments_type3
- 2.23
- VisibleRangeChange and VisibleRangeChanged are now also triggered when you close the calendar
- Add get Expanded - Checks if the calendar is expanded or collapsed
- AppointmentType1 and 2 are now always in front
- 3.00
- The View now uses the LazyLoading technique
- ASViewPager V1.30+ is required
- BugFixes
- 3.01
- B4I The GestureRecognizer is no longer needed
- 3.02
- Add Designer Property WeekRowCount - You can now display 6 rows in a month
- Default: 5
- Its locked to 5 and 6
- Add Designer Property WeekRowCount - You can now display 6 rows in a month
- 3.03
- Property ShowFirstWeekOfMonthInFirstRow removed
- First week of month is always in the first row
- BugFixes
- Property ShowFirstWeekOfMonthInFirstRow removed
- 3.04
- Add Refresh - Applies all changes and displays them
- do the same as CommitStyleChanges
- Call Refresh after you add one or some "AddAppointmentType1"
- Minor Adjustments
- Add Refresh - Applies all changes and displays them
- 3.05
- B4J only - Add Designer Property MouseHoverFeedback
- Default: True
- B4J only - Add Designer Property MouseHoverFeedback
- 3.06
- BugFixes
- 3.07
- BugFixes
- 3.08
- Add Designer Property KeepAppointmentsVisible - If true then the appointments keeps visible if you click on a day
Attachments
-
GestureRecognizer.bas11.2 KB · Views: 622
-
2.10 Backup ASCalendarAdvanced.zip14.3 KB · Views: 536
-
Example AS CalendarAdvanced.zip12.7 KB · Views: 678
-
2.23 Backup ASCalendarAdvanced.zip16.7 KB · Views: 366
-
3.02 Backup ASCalendarAdvanced.zip18 KB · Views: 334
-
ASCalendarAdvanced.zip18.4 KB · Views: 297
Last edited: