Options ======= All options that take a "Date" can handle a ``Date`` object; a String formatted according to the given ``format``; or a timedelta relative to today, eg "-1d", "+6m +1y", etc, where valid units are "d" (day), "w" (week), "m" (month), and "y" (year). Use "0" as today. There are also aliases for the relative timedelta's: "yesterday" equals "-1d", "today" is equal to "+0d" and "tomorrow" is equal to "+1d". Most options can be provided via data-attributes. An option can be converted to a data-attribute by taking its name, replacing each uppercase letter with its lowercase equivalent preceded by a dash, and prepending "data-date-" to the result. For example, ``startDate`` would be ``data-date-start-date``, ``format`` would be ``data-date-format``, and ``daysOfWeekDisabled`` would be ``data-date-days-of-week-disabled``. See the `quick reference`_ for an overview of all options and their default values autoclose --------- Boolean. Default: false Whether or not to close the datepicker immediately when a date is selected. assumeNearbyYear ---------------- Boolean or Integer. Default: false If true, manually-entered dates with two-digit years, such as "5/1/15", will be parsed as "2015", not "15". If the year is less than 10 years in advance, the picker will use the current century, otherwise, it will use the previous one. For example "5/1/15" would parse to May 1st, 2015, but "5/1/97" would be May 1st, 1997. To configure the number of years in advance that the picker will still use the current century, use an Integer instead of the Boolean true. E.g. "assumeNearbyYear: 20" beforeShowDay ------------- Function(Date). Default: $.noop A function that takes a date as a parameter and returns one of the following values: * undefined to have no effect * A Boolean, indicating whether or not this date is selectable * A String representing additional CSS classes to apply to the date's cell * An object with the following properties: * ``enabled``: same as the Boolean value above * ``classes``: same as the String value above * ``tooltip``: a tooltip to apply to this date, via the ``title`` HTML attribute * ``content``: the content to display in the day cell, rather than the default (day of month as text) beforeShowMonth --------------- Function(Date). Default: $.noop A function that takes a date as a parameter and returns one of the following values: * undefined to have no effect * A Boolean, indicating whether or not this month is selectable * A String representing additional CSS classes to apply to the month's cell * An object with the following properties: * ``enabled``: same as the Boolean value above * ``classes``: same as the String value above * ``tooltip``: a tooltip to apply to this date, via the ``title`` HTML attribute beforeShowYear -------------- Function(Date). Default: $.noop A function that takes a date as a parameter and returns one of the following values: * undefined to have no effect * A Boolean, indicating whether or not this year is selectable * A String representing additional CSS classes to apply to the year's cell * An object with the following properties: * ``enabled``: same as the Boolean value above * ``classes``: same as the String value above * ``tooltip``: a tooltip to apply to this year, via the ``title`` HTML attribute beforeShowDecade ---------------- Function(Date). Default: $.noop A function that takes a date as a parameter and returns one of the following values: * undefined to have no effect * A Boolean, indicating whether or not this year is selectable * A String representing additional CSS classes to apply to the year's cell * An object with the following properties: * ``enabled``: same as the Boolean value above * ``classes``: same as the String value above * ``tooltip``: a tooltip to apply to this year, via the ``title`` HTML attribute beforeShowCentury ----------------- Function(Date). Default: $.noop A function that takes a date as a parameter and returns one of the following values: * undefined to have no effect * A Boolean, indicating whether or not this year is selectable * A String representing additional CSS classes to apply to the year's cell * An object with the following properties: * ``enabled``: same as the Boolean value above * ``classes``: same as the String value above * ``tooltip``: a tooltip to apply to this year, via the ``title`` HTML attribute calendarWeeks ------------- Boolean. Default: false Whether or not to show week numbers to the left of week rows. .. figure:: _static/screenshots/option_calendarweeks.png :align: center clearBtn -------- Boolean. Default: false If true, displays a "Clear" button at the bottom of the datepicker to clear the input value. If "autoclose" is also set to true, this button will also close the datepicker. .. figure:: _static/screenshots/option_clearbtn.png :align: center container --------- String. Default: "body" Appends the date picker popup to a specific element; eg: container: '#picker-container' (will default to "body") .. _datesDisabled: datesDisabled ------------- String, Array. Default: [] Array of date strings or a single date string formatted in the given date format .. _daysOfWeekDisabled: daysOfWeekDisabled ------------------ String, Array. Default: [] Days of the week that should be disabled. Values are 0 (Sunday) to 6 (Saturday). Multiple values should be comma-separated. Example: disable weekends: ``'06'`` or ``'0,6'`` or ``[0,6]``. .. figure:: _static/screenshots/option_daysofweekdisabled.png :align: center .. _daysOfWeekHighlighted: daysOfWeekHighlighted --------------------- String, Array. Default: [] Days of the week that should be highlighted. Values are 0 (Sunday) to 6 (Saturday). Multiple values should be comma-separated. Example: highlight weekends: ``'06'`` or ``'0,6'`` or ``[0,6]``. defaultViewDate --------------- Date, String or Object with keys ``year``, ``month``, and ``day``. Default: today Date to view when initially opening the calendar. The internal value of the date remains today as default, but when the datepicker is first opened the calendar will open to ``defaultViewDate`` rather than today. If this option is not used, "today" remains the default view date. This option can be: * A date, which should be in local timezone. * A string which must be parsable with ``format``. * An object with keys ``year``, ``month`` and ``day`` (can't be set from a data attribute). If the given object is missing any of the required keys, their defaults are: * ``year``: the current year * ``month``: 0 (Note that it starts with 0 for January) * ``day``: 1 disableTouchKeyboard -------------------- Boolean. Default: false If true, no keyboard will show on mobile devices enableOnReadonly ---------------- Boolean. Default: true If false the datepicker will not show on a readonly datepicker field. .. _endDate: endDate ------- Date or String. Default: End of time The latest date that may be selected; all later dates will be disabled. Date should be in local timezone. String must be parsable with ``format``. .. figure:: _static/screenshots/option_enddate.png :align: center .. code-block:: html Will disable all dates after today. forceParse ---------- Boolean. Default: true Whether or not to force parsing of the input value when the picker is closed. That is, when an invalid date is left in the input field by the user, the picker will forcibly parse that value, and set the input's value to the new, valid date, conforming to the given `format`. format ------ String. Default: "mm/dd/yyyy" The date format, combination of d, dd, D, DD, m, mm, M, MM, yy, yyyy. * d, dd: Numeric date, no leading zero and leading zero, respectively. Eg, 5, 05. * D, DD: Abbreviated and full weekday names, respectively. Eg, Mon, Monday. * m, mm: Numeric month, no leading zero and leading zero, respectively. Eg, 7, 07. * M, MM: Abbreviated and full month names, respectively. Eg, Jan, January * yy, yyyy: 2- and 4-digit years, respectively. Eg, 12, 2012. Object. Custom formatting options * toDisplay: function (date, format, language) to convert date object to string, that will be stored in input field * toValue: function (date, format, language) to convert string object to date, that will be used in date selection :: $('.datepicker').datepicker({ format: { /* * Say our UI should display a week ahead, * but textbox should store the actual date. * This is useful if we need UI to select local dates, * but store in UTC */ toDisplay: function (date, format, language) { var d = new Date(date); d.setDate(d.getDate() - 7); return d.toISOString(); }, toValue: function (date, format, language) { var d = new Date(date); d.setDate(d.getDate() + 7); return new Date(d); } } }); immediateUpdates ---------------- Boolean. Default: false If true, selecting a year or month in the datepicker will update the input value immediately. Otherwise, only selecting a day of the month will update the input value immediately. inputs ------ Array, jQuery. Default: None A list of inputs to be used in a range picker, which will be attached to the selected element. Allows for explicitly creating a range picker on a non-standard element. .. code-block:: html