1,551 questions
2
votes
1
answer
171
views
ngx-bootstrap date picker with time (24-Hour Time)
How to set ngx-bootstrap bsDatepicker withTimepicker to use 24-hour format (disable showMeridian)?
I'm using ngx-bootstrap's <input bsDatepicker> with the withTimepicker: true option. It shows ...
0
votes
0
answers
67
views
Missing binding for required input 'for' of component MatTimepickerToggle
The error: Missing binding for required input 'for' of component MatTimepickerToggle.
I imported timepicker this way:
import {MatTimepickerModule} from "@angular/material/timepicker";
Can't ...
0
votes
0
answers
39
views
Time Picker has bugs in Flutter?
I am coding a Flutter app, for Farsi/Persian speaking users.
Seems time picker has bugs if locale is Persian, and it displays some digits in English, some in persian.
I use simple showTimePicker ...
0
votes
0
answers
34
views
Material Time Pickers don't allow expressing periods > 24 hours
The Material Time Pickers (see Time picker input) documentation states that it can be used to enter time periods (not just a TOD). Yet it doesn't appear to allow for entry of periods > 24 hours. ...
1
vote
1
answer
40
views
timepicker existing value is not prepopulating in the timepicker input
I am working on React timepicker component where I have to show the by default time as "4:00 PM" and whenever user saves the data already then I need to auto-populate the existing saved data ...
0
votes
2
answers
96
views
Get element id and add to JS function options
I am using jquery.timepicker to make a field a time picker. The default functionality it to append the drop down to the window.
I do not like the width of the dropdown and do not wish to set a fixed ...
2
votes
1
answer
84
views
Flutter time picker does not accept Arabic numbers
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
TimeOfDay _tim = const TimeOfDay(hour:5, minute: 0);
void main() {
runApp(const MyApp());
}...
0
votes
0
answers
27
views
Vuetify time-picker change minutes to multiples of 3
Is it possible to dynamically adjust the Vuetify time picker to display minutes in a series such as of 3(e.g.: 3, 6, 9), based on data retrieved from a database? The data from the database will ...
0
votes
1
answer
89
views
Remove minutes value that is not divisible by 15 in Material Ui TimePicker component
I want to remove minutes value that is not divisible by 15 in Material Ui TimePicker component.
I am trying this approach but this is not working
const shouldDisableTime = (timeValue) => {
...
0
votes
1
answer
219
views
24 hours format with timepicker
I'm using timepicker.io to allow users to choose booking times. The working hours for bookings are from 22:00 to 05:00, which spans across midnight. I've tried configuring the timepicker with the ...
0
votes
1
answer
110
views
How can i disable many period of time in MUI Time Picker
Now I've been doing a 2 boxes of Time Picker [startTime] -> [endTime]
from this i want the time picker can pick only available time with the data like
let times = [
{ startTime: "01:00&...
0
votes
1
answer
67
views
custom calendar dialog in android project
In my project, I add a custom layout for the dialog to show the time picker to the user.
it works fine but sometimes when the dialog opens it blinks and when I set the time and click on the cancel or ...
1
vote
0
answers
50
views
How can I make a hour picker for each different day
I want to make the seller choose the hours that he/she is available at, but I cannot find a logical way of implementing it for each day. This version is adding the hours to the same list.
...
0
votes
3
answers
831
views
vue3 simple-time-picker bug
I recently came across the Vue-time-picker repository (https://github.com/phoenixwong/vue3-timepicker) while searching for a simple time picker solution. Despite being in Beta mode, it seemed ...
0
votes
1
answer
130
views
"iOS Xamarin.Forms: NSInternalInconsistencyException when scrolling TimePicker after updating to iOS 17.1.1/17.1.2"
Our Xamarin.Forms iOS application is experiencing crashes with a specific exception: Fatal Exception: NSInternalInconsistencyException
Modifications to the layout engine must not be performed from a ...
0
votes
1
answer
421
views
Configuring TimePicker in Ant Design to Display and Select Time in 'HH:mm' Format
How can I configure the TimePicker component in Ant Design to always display and select the time in the "HH:mm" format, regardless of whether the user enters the time in the formats "HH,...
4
votes
1
answer
793
views
TimePicker button for Angular Material Input with type time
The MDC-based MatInput hides the native picker indicator.
I would like to recreate this indicator in a modern way with an input with a button
<mat-form-field appearance="outline">
&...
1
vote
0
answers
164
views
Set a list of available times in jquery timepicker
I am trying to set a list of predefined times in a jQuery timepicker. It should run from 10am to 12 midnight. I am also trying to highlight certain times that there is no availability. I believe my ...
0
votes
1
answer
668
views
Updating preset ranges in Easepick
I'm using the following Easepick:
const minute = 60 * 1000;
const hour = 60 * minute;
const day = 24 * hour;
const picker = new easepick.create({
element: "#select_start",
css: ["https://cdn....
0
votes
1
answer
123
views
How to change fontColor when disabled and change borderColor of input when hovering - TimePicker Material UI MUI React
I'm trying to change some properties in TimePicker Component, like change the fontColor when TimePicker is disabled and remove the defauld borderColor when hovering the input. Does anyone knows how to ...
0
votes
1
answer
1k
views
Capitalize AM/PM in Material 3 Jetpack Compose TimePicker
How to capitalize the AM/PM in Jetpack Compose M3 TimePicker?
Missed to add earlier - Works in my emulator, the issue is device-specific (depends on Locale).
In the emulator, the AM/PM appears in ...
0
votes
1
answer
832
views
How to set height, width and border-radius in TimePicker component - MUI React
I'm trying to change some properties like height, width and border-radius of the input in TimePicker, but with no success. Does anyone knows how to do change it using sx or slotProps? Here is my ...
3
votes
1
answer
1k
views
How to change background color of Dropdown in TimePicker and font color - MUI React
I'm trying to change some properties like background color and font color in TimePicker using the css className properties, but with no success. Does anyone knows how to do this and where can I find a ...
2
votes
0
answers
61
views
How to set interval time for TimePickerDialog?
I use TimePickerDialog that show hours and minutes. I need that show only 30 minutes interval from start 00:30. That should be like 00:30, 1:00, 1:30, 2:00. I searched solution but I did not get clear ...
0
votes
2
answers
56
views
time format not changing in timepicker kotlin
So I used a timepicker in android studio Kotlin to receive input from the user as the following:
`
private lateinit var editTime : TimePicker
`
I did create the timepicker successfully, but whenever ...