Skip to content

Latest commit

 

History

History
executable file
·
31 lines (17 loc) · 964 Bytes

date-picker-usage.md

File metadata and controls

executable file
·
31 lines (17 loc) · 964 Bytes

Home / DatePicker

DatePicker

This widget displays a popup calendar to select a single calendar date.

DatePicker is intrinsically a div element and accepts all of its attributes.

Usage

import { DatePicker } from "react-simple-widgets/dist/date-picker";

<DatePicker value displayFormat validator onChange />;
  • value: string

    The selected date of the widget in the format YYYY-MM-DD.

  • displayFormat?: string

    The format to display the selected date. Defaults to ddd, Do MMM YYYY (E.g. Fri, 15th Apr 2022).

  • validator?: (date: string) => string

    If specified, the selected date is passed to this function to validate. This function should return a string error message or null if no error. If an error message is returned, onChange is not called with the selected date.

  • onChange: (date: string) => void

    This function is called with the selected date when the calendar date is clicked on.