import * as React from 'react'; import { DefaultButton } from 'office-ui-fabric-react/lib/Button'; import { DatePicker, DayOfWeek, defaultDayPickerStrings } from '@uifabric/date-time'; import './DatePicker.Examples.scss'; export interface IDatePickerFormatExampleState { firstDayOfWeek?: DayOfWeek; value?: Date | null; } export class DatePickerFormatExample extends React.Component<{}, IDatePickerFormatExampleState> { public constructor(props: {}) { super(props); this.state = { firstDayOfWeek: DayOfWeek.Sunday, value: null, }; } public render(): JSX.Element { const { firstDayOfWeek, value } = this.state; const desc = 'This field is required. One of the support input formats is year dash month dash day.'; return (

Applications can customize how dates are formatted and parsed. Formatted dates can be ambiguous, so the control will avoid parsing the formatted strings of dates selected using the UI when text input is allowed. In this example, we are formatting and parsing dates as dd/MM/yy.

{(this.state.value || '').toString()}
); } private _onSelectDate = (date: Date | null | undefined): void => { this.setState({ value: date }); }; private _onClick = (): void => { this.setState({ value: null }); }; private _onFormatDate = (date: Date): string => { return date.getDate() + '/' + (date.getMonth() + 1) + '/' + (date.getFullYear() % 100); }; private _onParseDateFromString = (value: string): Date => { const date = this.state.value || new Date(); const values = (value || '').trim().split('/'); const day = values.length > 0 ? Math.max(1, Math.min(31, parseInt(values[0], 10))) : date.getDate(); const month = values.length > 1 ? Math.max(1, Math.min(12, parseInt(values[1], 10))) - 1 : date.getMonth(); let year = values.length > 2 ? parseInt(values[2], 10) : date.getFullYear(); if (year < 100) { year += date.getFullYear() - (date.getFullYear() % 100); } return new Date(year, month, day); }; }