-
Updated
Jul 2, 2019 - Java
time-picker
Here are 42 public repositories matching this topic...
-
Updated
Mar 14, 2020 - JavaScript
Describe the bug
Prop fadeToColor doesn't accepts rgba color.
Expected behavior
Ideally it should accept any valid color, such as rgba.
To Reproduce
export default class App extends Component {
state = { date: new Date() }
render = () =>
<DatePicker
date={this.state.date}
onDateChange={date => this.setState({ date })}
fade-
Updated
Jun 23, 2020 - JavaScript
-
Updated
May 22, 2020 - C#
<TimePicker
id={section}
trigger={this.getTrigger(section)}
{...this.props}
focused={focused}
meridiem={meridiem}
timeMode='12'
onFocusChange={this.onFocusChange(section)}
onTimeChange={this.onTimeChange(section)}
time={hour && minute ? '6:20' : '5:45'}
/>
During the initial render the pointers are on the correct position like so
<img width="279" alt="Screen Sho
-
Updated
Oct 19, 2018 - Java
-
Updated
Mar 6, 2020 - JavaScript
If you add a non number character, say the letter x, into the hour input on a 24 hour TimePicker, the minutes will be cleared out to the placeholder. If you do the same with a 12 hour TimePicker, the minutes are not cleared out. It's a little strange that the behavior is inconsistent.
Firefox:
<img width="466" alt="Screen Shot 2019-06-27 at 4 02 17 PM" src="https://user-images.githubuserconte
-
Updated
Jun 18, 2020 - JavaScript
-
Updated
Aug 15, 2018 - Swift
In trying to figure out why the example usage codes weren't giving me the same results in my app as in the docs, I decided to look at the dummy app to see how they were actually implemented there. I realized that I needed to give the component a value. Silly me; I should've figured that out sooner. But would be nice to note this in the docs and usage examples.
-
Updated
Aug 18, 2018 - JavaScript
-
Updated
Feb 6, 2018 - PLSQL
-
Updated
Aug 27, 2016 - JavaScript
-
Updated
Dec 2, 2018 - PHP
-
Updated
Mar 26, 2018 - JavaScript
-
Updated
Jan 24, 2017 - JavaScript
-
Updated
Jun 18, 2020 - CSS
-
Updated
Dec 5, 2018 - PHP
-
Updated
Mar 4, 2019 - JavaScript
-
Updated
Jun 21, 2018 - TypeScript
-
Updated
Apr 5, 2020 - JavaScript
-
Updated
Aug 3, 2017 - JavaScript
Improve this page
Add a description, image, and links to the time-picker topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the time-picker topic, visit your repo's landing page and select "manage topics."
And potentially seconds (if that feature is added).
I find that when working with times in the day, it's easy to reason about it when just using minutes as the value- as in the total minutes past
00:00in the day. Its a nice single value to pass around and can easily be converted to hours and minutes again for display.I will be using the separated out hours and minutes for now, but just t