WeekCalendar icon indicating copy to clipboard operation
WeekCalendar copied to clipboard

add day from sunday

Open waqasebmacs opened this issue 5 years ago • 1 comments
trafficstars

can not start with sunday view like how to start of the week day from sunday Sun Mon Tue .. so on

waqasebmacs avatar Feb 20 '20 11:02 waqasebmacs

@waqasebmacs To make it start from Sunday we need to do below modifications in library project

1 --> In WeekCalendar class go to getWeekDayNames() method. Here keep daysName.remove(0); and remove/comment daysName.add(daysName.remove(0));.

2 --> In WeekFragment class go to init() method. Here set midDate to WEDNESDAY like below if (midDate != null) { midDate = midDate.withDayOfWeek(DateTimeConstants.WEDNESDAY); }

BharadwajMarripally avatar Apr 19 '22 05:04 BharadwajMarripally