Using the library in question I inserted the following code to have a calendar that starts with Sunday.
Going from March to April it performs a strange display by repeating the empty month of March and putting only a few days of April. In the following months the situation did not recover.
Is this a bug?
B4X:
DateTime.DateFormat="dd/MM/yyyy"
DateTime.SetTimeZone(1)
dpData.MinDate=DateTime.DateParse("01/12/2019")
dpData.MaxDate=DateTime.DateParse("02/12/2051")
dpData.FirstDayOfWeek=6
dpData.WeekNameShort=dpData.CreateASDatePicker_WeekNameShort("DO","LU","MA","ME","GI","VE","SA")
dpData.MonthNameShort=dpData.CreateASDatePicker_MonthNameShort("Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic")
dpData.Refresh
Is this a bug?