Questions tagged [timepicker]

A view for selecting the time of day, in either 24 hour or AM/PM mode.

The hour, each minute digit, and AM/PM (if applicable) can be conrolled by vertical spinners. The hour can be entered by keyboard input. Entering in two digit hours can be accomplished by hitting two digits within a timeout of about a second (e.g. '1' then '2' to select 12). The minutes can be entered by entering single digits. Under AM/PM mode, the user can hit 'a', 'A", 'p' or 'P' to pick. For a dialog using this view, see .

1534 questions
5
votes
5 answers

Problems with Trent Richardson timepicker and datetimepicker

I'm trying to implement Trent's timepicker, but I'm not being able to do it. I'm testing it in Chrome, Firefox, and IE9. I already imported Jquery and Jquery UI. The only common error I could find was that Jquery UI wasn't the full version(without…
iBadell
  • 81
  • 1
  • 5
5
votes
4 answers

How to display a pointer when hovering over an icon

Below I have a Jquery datepicker and a jquery timepicker (both trent richardson's datepicker and timepicker) $(function() { $( "#datepicker" ).datepicker({minDate: 0, dateFormat: "dd-mm-yy", showOn: "button", …
user1180490
  • 71
  • 1
  • 1
  • 8
5
votes
3 answers

Android: timepicker and datepicker in the same dialog box

I am developing an app for android. I have created a timepickerdialog and a datepickerdialog, but the problem is, both of them run in different dialog boxes, which is not what the way I want my app to work :-S Is there any way to create a single…
ElTourero
  • 51
  • 1
  • 1
  • 2
5
votes
1 answer

MaterializeCSS Timepicker can't set initial time?

I have ran into a problem using MaterializeCSS Timepicker component. It seems that it's not possible to set initial value that actually SHOWS in the component. The only behavior I can get is that time is chosen when I open the modal and once I click…
Nemanja
  • 51
  • 6
5
votes
1 answer

Can TimePicker be used without header on Android

I am using the widget to enable the user to set the time. However, since I'm embedding the into one of my views, I'd like to get rid of the TimePicker's header (the crossed out area in the picture). Default timepicker in…
Kornelije Petak
  • 9,412
  • 15
  • 68
  • 96
5
votes
0 answers

How set Locale in Time Picker Android

I am developing the multi-language supported app. so I want to set Locale.US in time picker when I changed language English to Arabic. I want to show an English time picker. I want to pass Locale.US in time picker, now I'm pass locale.US in Date…
5
votes
4 answers

How can I restrict MUI TimePicker to allow only certain times?

I am current using MUI TimePicker component. I have a use case in which I need to restrict selected time options to at top of the hour(00min) and to at half of hour(30min).Is this possible? I already know I can grab the minutes value after user has…
jasan
  • 11,475
  • 22
  • 57
  • 97
5
votes
2 answers

Nullable TimePicker in Xamarin.Forms

I'm using TimePicker for displaying time in my app. When time is already set then it displays correctly, but when time is not set, then it display default 12 : 00 AM time. So I just want display null value when time is not set. Is it possible to set…
Uddhao Pachrne
  • 531
  • 1
  • 8
  • 22
5
votes
2 answers

How to add timePicker using fragment?

I have 4 timePicker in my app. The timePicker dialog will pop out when the user double click on the editText. But sometimes when I accidentally click more than two times, the app crashed and said that the fragment already added. How can I fix this?…
John
  • 684
  • 11
  • 35
5
votes
1 answer

Change color of TimePicker (RadialTimePickerView)?

How do I change the number/picker-color of the TimePicker/RadialTimePickerView? I can see, that the RadialTimePickerView sets its color internal by using final int numbersTextColor = a.getColor(R.styleable.TimePicker_numbersTextColor, …
svennergr
  • 800
  • 1
  • 8
  • 26
5
votes
4 answers

How to implement the cordova-plugin-datepicker for Android?

I have tried to implement this Datetimepicker ( https://github.com/VitaliiBlagodir/cordova-plugin-datepicker ) but still not working on my Android Device ( Android 4.0.4). I added the plugin to my Project and used : cordova plugin add…
Euwo
  • 61
  • 1
  • 1
  • 3
5
votes
4 answers

Xamarin Forms timepicker 24hour

I'm new to Xamarin.Forms and i can't seems to find how to show the dialog in a 24hour format instead of a AM/PM can someone help me ? Thank you
user3718160
  • 481
  • 2
  • 11
  • 23
5
votes
2 answers

Twitter Bootstrap timepicker without AM/PM button in View side

I have this timepicker with bootstrap: Demo Now I whant to hide AM/PM, is it possible to do with javascript. Or I will have to remove it from bootstrap.timepicker.js? I have try with this: $('#timepicker1').timepicker({ defaultTime: 'value', …
DaniKR
  • 2,418
  • 10
  • 39
  • 48
5
votes
2 answers

angularjs timepicker ng-change

I am using AngularJS TimePicker (ui.bootstrap.timepicker). I would like to fire an event when the timepicker is changed. I looked for an ng-change attribute, but did not find one. My purpose is that I would like to save the changes that are made…
Josh Petitt
  • 9,371
  • 12
  • 56
  • 104
5
votes
2 answers

Android: Change button text in DatePickerDialog / TimePickerDialog

I have got a DatePickerDialog. In the default configuration it works fine. DatePickerDialog dialog = new DatePickerDialog( view.getContext(), new OnDateSetListener() { @Override public void onDateSet(DatePicker picker, int…
mburm
  • 1,417
  • 2
  • 17
  • 37