Calendar FirstDayOfWeek issue

hi all,
why i must set FirstDayOfWeek=2 if i want monday and not 1? sunday should be 0, am i wrong?
thanks

1 Reply

SP Subburaj Pandian Veluchamy Syncfusion Team April 23, 2019 10:45 AM UTC

Hi Alberto, 
  
Thank you for contacting Syncfusion support. 
  
As per the SfCalendar implementation “While setting Calendar FirstDayofWeek as 1 it will display as Sunday” and we have implemented this behavior based on the native JavaCalendar behavior. As per the JavaCalendar the FirstDayofWeek weekdays will return value from 1 to 7, as same calendar will accept values from 1 to 7 and Sunday will be 1 and Saturday will be 7. Kindly set the value as 2 to set Monday as first day of week. 
  
JavaCalendar code snippet for your reference, 
 
 
Java.Util.Calendar nativeCalendar = Java.Util.Calendar.Instance; 
// The value Sunday will set the FirstDayOfWeek as 1 
nativeCalendar.FirstDayOfWeek = Java.Util.Calendar.Sunday; 
  
Kindly revert us if you have any concern. 
 
Regards,
Subburaj Pandian V 
 


Loader.
Up arrow icon