Skip to content

DateTimePicker API

API reference docs for the React DateTimePicker component. Learn about the props, CSS, and other APIs of this exported module.

Demos

Import

import { DateTimePicker } from '@mui/x-date-pickers/DateTimePicker';
// or
import { DateTimePicker } from '@mui/x-date-pickers';
// or
import { DateTimePicker } from '@mui/x-date-pickers-pro';

Learn about the difference by reading this guide on minimizing bundle size.

Props

Props of the native component are also available.

NameTypeDefaultDescription
ampmbool`utils.is12HourCycleInCurrentLocale()`

12h/24h view for hour selection clock.

ampmInClockbooltrue on desktop, false on mobile

Display ampm controls under the clock (instead of in the toolbar).

autoFocusbool-

If true, the main element is focused during the first mount. This main element is: - the element chosen by the visible view if any (i.e: the selected day on the day view). - the input element if there is a field rendered.

closeOnSelectbool`true` for desktop, `false` for mobile (based on the chosen wrapper and `desktopModeMediaQuery` prop).

If true, the popover or modal will close after submitting the full date.

dayOfWeekFormatterfunc(_day: string, date: TDate) => adapter.format(date, 'weekdayShort').charAt(0).toUpperCase()

Formats the day of week displayed in the calendar header.

Signature:function(date: TDate) => string
  • date The date of the day of week provided by the adapter.

Returns: The name to display.

defaultValueobject-

The default value. Used when the component is not controlled.

desktopModeMediaQuerystring'@media (pointer: fine)'

CSS media query when Mobile mode will be changed to Desktop.

disabledboolfalse

If true, the picker and text field are disabled.

disableFutureboolfalse

If true, disable values after the current date for date components, time for time components and both for date time components.

disableHighlightTodayboolfalse

If true, today's date is rendering without highlighting with circle.

disableIgnoringDatePartForTimeValidationboolfalse

Do not ignore date part when validating min/max time.

disableOpenPickerboolfalse

If true, the open picker button will not be rendered (renders only the field).

disablePastboolfalse

If true, disable values before the current date for date components, time for time components and both for date time components.

displayWeekNumberbool-

If true, the week number will be display in the calendar.

fixedWeekNumbernumber-

The day view will show as many weeks as needed after the end of the current month to match this value. Put it to 6 to have a fixed number of weeks in Gregorian calendars

formatstring-

Format of the date when rendered in the input(s). Defaults to localized format based on the used views.

formatDensity'dense'
| 'spacious'
"dense"

Density of the format when rendered in the input. Setting formatDensity to "spacious" will add a space before and after each /, - and . character.

inputRefref-

Pass a ref to the input element.

labelnode-

The label content.

loadingboolfalse

If true, calls renderLoading instead of rendering the day calendar. Can be used to preload information and show it in calendar.

localeTextobject-

Locale for components texts. Allows overriding texts coming from LocalizationProvider and theme.

maxDateobject-

Maximal selectable date.

maxDateTimeobject-

Maximal selectable moment of time with binding to date, to set max time in each day use maxTime.

maxTimeobject-

Maximal selectable time. The date part of the object will be ignored unless props.disableIgnoringDatePartForTimeValidation === true.

minDateobject-

Minimal selectable date.

minDateTimeobject-

Minimal selectable moment of time with binding to date, to set min time in each day use minTime.

minTimeobject-

Minimal selectable time. The date part of the object will be ignored unless props.disableIgnoringDatePartForTimeValidation === true.

minutesStepnumber1

Step over minutes.

monthsPerRow3
| 4
3

Months rendered per row.

namestring-

Name attribute used by the input element in the Field.

onAcceptfunc-

Callback fired when the value is accepted.

Signature:function(value: TValue) => void
  • value The value that was just accepted.
onChangefunc-

Callback fired when the value changes.

Signature:function(value: TValue, context: FieldChangeHandlerContext) => void
  • value The new value.
  • context The context containing the validation result of the current value.
onClosefunc-

Callback fired when the popup requests to be closed. Use in controlled mode (see open).

onErrorfunc-

Callback fired when the error associated to the current value changes. If the error has a non-null value, then the TextField will be rendered in error state.

Signature:function(error: TError, value: TValue) => void
  • error The new error describing why the current value is not valid.
  • value The value associated to the error.
onMonthChangefunc-

Callback fired on month change.

Signature:function(month: TDate) => void
  • month The new month.
onOpenfunc-

Callback fired when the popup requests to be opened. Use in controlled mode (see open).

onSelectedSectionsChangefunc-

Callback fired when the selected sections change.

Signature:function(newValue: FieldSelectedSections) => void
  • newValue The new selected sections.
onViewChangefunc-

Callback fired on view change.

Signature:function(view: TView) => void
  • view The new view.
onYearChangefunc-

Callback fired on year change.

Signature:function(year: TDate) => void
  • year The new year.
openboolfalse

Control the popup or dialog open state.

openTo'day'
| 'hours'
| 'meridiem'
| 'minutes'
| 'month'
| 'seconds'
| 'year'
-

The default visible view. Used when the component view is not controlled. Must be a valid option from views list.

orientation'landscape'
| 'portrait'
-

Force rendering in particular orientation.

reduceAnimationsbool`@media(prefers-reduced-motion: reduce)` || `navigator.userAgent` matches Android <10 or iOS <13

If true, disable heavy animations.

referenceDateobjectThe closest valid date-time using the validation props, except callbacks like `shouldDisable<...>`.

The date used to generate the new value when both value and defaultValue are empty.

renderLoadingfunc() => <span data-mui-test="loading-progress">...</span>

Component displaying when passed loading true.

Signature:function() => React.ReactNode

    Returns: The node to render when loading.

    selectedSections'all'
    | 'day'
    | 'empty'
    | 'hours'
    | 'meridiem'
    | 'minutes'
    | 'month'
    | 'seconds'
    | 'weekDay'
    | 'year'
    | number
    -

    The currently selected sections. This prop accepts four formats: 1. If a number is provided, the section at this index will be selected. 2. If a string of type FieldSectionType is provided, the first section with that name will be selected. 3. If "all" is provided, all the sections will be selected. 4. If null is provided, no section will be selected. If not provided, the selected sections will be handled internally.

    shouldDisableDatefunc-

    Disable specific date.
    Warning: This function can be called multiple times (for example when rendering date calendar, checking if focus can be moved to a certain date, etc.). Expensive computations can impact performance.

    Signature:function(day: TDate) => boolean
    • day The date to test.

    Returns: If true the date will be disabled.

    shouldDisableMonthfunc-

    Disable specific month.

    Signature:function(month: TDate) => boolean
    • month The month to test.

    Returns: If true, the month will be disabled.

    shouldDisableTimefunc-

    Disable specific time.

    Signature:function(value: TDate, view: TimeView) => boolean
    • value The value to check.
    • view The clock type of the timeValue.

    Returns: If true the time will be disabled.

    shouldDisableYearfunc-

    Disable specific year.

    Signature:function(year: TDate) => boolean
    • year The year to test.

    Returns: If true, the year will be disabled.

    showDaysOutsideCurrentMonthboolfalse

    If true, days outside the current month are rendered:
    - if fixedWeekNumber is defined, renders days to have the weeks requested.
    - if fixedWeekNumber is not defined, renders day to fill the first and last week of the current month.
    - ignored if calendars equals more than 1 on range pickers.

    skipDisabledboolfalse

    If true, disabled digital clock items will not be rendered.

    slotPropsobject{}

    The props used for each component slot.

    slotsobject{}

    Overridable component slots.

    See Slots API below for more details.

    sxArray<func
    | object
    | bool>
    | func
    | object
    -

    The system prop that allows defining system overrides as well as additional CSS styles.

    See the `sx` page for more details.

    thresholdToRenderTimeInASingleColumnnumber24

    Amount of time options below or at which the single column time renderer is used.

    timeSteps{ hours?: number, minutes?: number, seconds?: number }{ hours: 1, minutes: 5, seconds: 5 }

    The time steps between two time unit options. For example, if timeStep.minutes = 8, then the available minute options will be [0, 8, 16, 24, 32, 40, 48, 56]. When single column time renderer is used, only timeStep.minutes will be used.

    timezonestringThe timezone of the `value` or `defaultValue` prop is defined, 'default' otherwise.

    Choose which timezone to use for the value. Example: "default", "system", "UTC", "America/New_York". If you pass values from other timezones to some props, they will be converted to this timezone before being used.

    See the timezones documentation for more details.

    valueobject-

    The selected value. Used when the component is controlled.

    view'day'
    | 'hours'
    | 'meridiem'
    | 'minutes'
    | 'month'
    | 'seconds'
    | 'year'
    -

    The visible view. Used when the component view is controlled. Must be a valid option from views list.

    viewRenderers{ day?: func, hours?: func, meridiem?: func, minutes?: func, month?: func, seconds?: func, year?: func }-

    Define custom view renderers for each section. If null, the section will only have field editing. If undefined, internally defined view will be the used.

    viewsArray<'day'
    | 'hours'
    | 'minutes'
    | 'month'
    | 'seconds'
    | 'year'>
    -

    Available views.

    yearsPerRow3
    | 4
    4 on desktop, 3 on mobile

    Years rendered per row.

    The component cannot hold a ref.

    Slots

    Slot nameClass nameDefault componentDescription
    tabsDateTimePickerTabsTabs enabling toggling between date and time pickers.
    toolbarDateTimePickerToolbarCustom component for the toolbar rendered above the views.
    calendarHeaderPickersCalendarHeaderCustom component for calendar header. Check the PickersCalendarHeader component.
    switchViewButtonIconButtonButton displayed to switch between different calendar views.
    switchViewIconArrowDropDownIcon displayed in the SwitchViewButton. Rotated by 180° when the open view is 'year'.
    previousIconButtonIconButtonButton allowing to switch to the left view.
    nextIconButtonIconButtonButton allowing to switch to the right view.
    leftArrowIconArrowLeftIcon displayed in the left view switch button.
    rightArrowIconArrowRightIcon displayed in the right view switch button.
    dayPickersDayCustom component for day. Check the PickersDay component.
    actionBarPickersActionBarCustom component for the action bar, it is placed below the picker views.
    shortcutsPickersShortcutsCustom component for the shortcuts.
    desktopPaperPickersPopperPaperCustom component for the paper rendered inside the desktop picker's Popper.
    desktopTransitionGrow or Fade from '@mui/material' when `reduceAnimations` is `true`.Custom component for the desktop popper Transition.
    desktopTrapFocusFocusTrap from '@mui/base'.Custom component for trapping the focus inside the views on desktop.
    popperPopper from '@mui/material'.Custom component for the popper inside which the views are rendered on desktop.
    textFieldTextField from '@mui/material' or PickersTextField if `enableAccessibleFieldDOMStructure` is `true`.Form control with an input to render the value inside the default field.
    inputAdornmentInputAdornmentComponent displayed on the start or end input adornment used to open the picker on desktop.
    openPickerButtonIconButtonButton to open the picker on desktop.
    layoutCustom component for wrapping the layout. It wraps the toolbar, views, action bar, and shortcuts.
    clearIconClearIconIcon to display inside the clear button.
    clearButtonIconButtonButton to clear the value.
    fieldComponent used to enter the date with the keyboard.
    openPickerIconIcon displayed in the open picker button on desktop.
    digitalClockItemMenuItem from '@mui/material'Component responsible for rendering a single digital clock item.
    digitalClockSectionItemMenuItem from '@mui/material'Component responsible for rendering a single multi section digital clock section item.
    dialogPickersModalDialogRootCustom component for the dialog inside which the views are rendered on mobile.
    mobilePaperPaper from '@mui/material'.Custom component for the paper rendered inside the mobile picker's Dialog.
    mobileTransitionFade from '@mui/material'.Custom component for the mobile dialog Transition.