mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-06-27 16:10:13 +08:00
16 lines
580 B
Plaintext
16 lines
580 B
Plaintext
|
|
weekNumberCalculation *1.6*
|
|
===========================
|
|
|
|
The method for calculating week numbers that are displayed with the [weekNumbers](weekNumbers) setting.
|
|
|
|
<div class='spec' markdown='1'>
|
|
String/Function, *default*:`"iso"`
|
|
</div>
|
|
|
|
The default (`"iso"`) causes
|
|
[ISO8601 week numbers](http://en.wikipedia.org/wiki/ISO_8601#Week_dates).
|
|
|
|
You may also specify a function, which accepts a single native Date object and returns
|
|
an integer week number. Since FullCalendar currently lacks a built-in internationlization
|
|
system, this is only way to implement localized week numbers. |