React-datepicker: How to chage time to 24 format in window with choise time?

Created on 13 Nov 2017  路  2Comments  路  Source: Hacker0x01/react-datepicker

Change to 24h format here:
12344

Most helpful comment

Hi,

Is this possible have 24 hour time format in input time in react date picker? So instead of AM PM, user can enter 24 hour time in the input box.

https://reactdatepicker.com/#example-input-time

Kindly help if anyone knows how can this be made to work.

Best regards,
Manmath

All 2 comments

This is assuming you have a property set up that sets when the user wants 12 hour versus 24 hour formats.
<DatePicker timeFormat={this.props.timeformat === '24' ? 'HH:mm' : 'hh:mm a'} </

Hi,

Is this possible have 24 hour time format in input time in react date picker? So instead of AM PM, user can enter 24 hour time in the input box.

https://reactdatepicker.com/#example-input-time

Kindly help if anyone knows how can this be made to work.

Best regards,
Manmath

Was this page helpful?
0 / 5 - 0 ratings