Time Picker
Time Picker is an input field for entering or selecting a specific time.
new tab
Source code
TimePickerBasic.java
TimePickerBasic.java
The time can be entered directly using a keyboard or by choosing a value from a set of predefined options presented in an overlay. The overlay opens when the field is clicked or any input is entered when the field is focused.
Step
Time Picker’s step parameter defines the interval (in seconds) between the items displayed in the overlay. It also specifies the amount by which the time increases/decreases using the Up/Down arrow keys (when the overlay is disabled).
The default step is one hour (that is 3600
).
Note that, unlike with Number Field, Time Picker accepts values that do not align with the specified step.
new tab
Source code
TimePickerMinutesStep.java
TimePickerMinutesStep.java
Note
|
Use common steps
The step must divide an hour or day evenly.
For example, "15 minutes", "30 minutes" and "2 hours" are valid steps, while "42 minutes" is not.
|
The displayed time format changes based on the step.
new tab
Source code
TimePickerSecondsStep.java
TimePickerSecondsStep.java
Step | Format |
---|---|
Less than 60 seconds | HH:MM:SS |
Less than 1 second | HH:MM:SS:FFF |
Note
|
Limit the number of steps
The overlay does not appear for steps less than 900 seconds (15 minutes) to avoid showing an impractical number of choices.
|
Auto Open
The overlay opens automatically when the field is focused using a pointer (mouse or touch), or when the user types in the field. You can disable that to only open the overlay when the toggle button or Up/Down arrow keys are pressed.
new tab
Source code
TimePickerAutoOpen.java
TimePickerAutoOpen.java
Validation
Minimum & Maximum Value
You can define a minimum and maximum value for Time Picker if you need to restrict the input to a specific range:
new tab
Source code
TimePickerMinMax.java
TimePickerMinMax.java
Custom Validation
If the minimum and maximum values are not sufficient, you can also apply custom validation.
new tab
Source code
TimePickerCustomValidation.java
TimePickerCustomValidation.java
Best Practises
Use Time Picker when the user needs to choose a time of day. Do not use it for durations, such as for a stopwatch or timer.
Related Components
Component | Usage recommendations |
---|---|
Input field for entering or selecting a specific date. | |
Input field for entering or selecting a specific date. |
68E1BB9D-2798-4662-A35F-E9CF5D5575A6