react-datetime-picker
react-datetime-picker copied to clipboard
A datetime picker for your React app.
I am experience a problem when the component is loaded with a provided `value`. Only the first digit of day, month, year, as well as time, is displayed (see image)....
When the datetime picker collides with the bottom of the screen it adding the --above-label tag to the classname, however there is no css in the DateTimePicker.less file to support...
Hi there! I'm reporting a possible issue on how incorrect times are handled between 12 hr and 24 hr formats. I've created a codesandbox to show the issue: https://codesandbox.io/s/adoring-ully-bpyqwc To...
When calendar is rendered using portal, selecting a date from calendar is not triggering onChange. Demo: https://codesandbox.io/s/dreamy-pasteur-zm96pl?file=/src/App.js
import React, { useState } from 'react'; import DateTimePicker from 'react-datetime-picker'; export default function App() { const [date, setDate] = useState(new Date()); function handleChange(newDate) { setDate(newDate); } return ( );...
I'd like to use Finnish locale to get correct 24-hour clock, date/time field separators etc. But to have all the texts in English, at least month and week day names....
The docs show that the value prop can be a string, but what formats it accepts are not specified. The docs give a yyyy-MM-dd iso format, but I have tested...
this is my codes ```js {` #custom_datetime-picker .react-datetime-picker__wrapper { border: 1px solid #e4e4e7; padding: 5px; border-radius: 5px; } #custom_datetime-picker input.react-datetime-picker__inputGroup__input.react-datetime-picker__inputGroup__year + .react-datetime-picker__inputGroup__divider { width: 2px; background: #e4e4e7; border-radius: 5px; margin:...