Questions tagged [jquery-ui-timepicker]

jQuery timepicker plugin created by Jon Thornton, inspired by Google Calendar.

jQuery timepicker plugin created by Jon Thornton, inspired by Google Calendar.

The plugin can be found at http://jonthornton.github.io/jquery-timepicker/ or https://github.com/jonthornton/jquery-timepicker

68 questions
8
votes
7 answers

How to change jQuery UI Datepicker Z-Index value?

I am forced to use an older version of jquery ui which is 1.8.10. The datepicker in this version had a bug inside of the z-index setting which at times made it appear under other controls. I am simply wanting to adjust the z-index of the dp so that…
5
votes
1 answer

jquery ui timepicker onChange Event

i am Struggling with onchange for JQuery ui timepicker plugin: http://trentrichardson.com/examples/timepicker/ I am using the following code. $(document).ready(function () { $('#CutoffTime').timepicker({ stepMinute: 15 }); }); // Trying to…
user1358918
  • 105
  • 2
  • 2
  • 4
3
votes
1 answer

Adding time in any format through text field without timepicker in PHP

I need to enter the number of hours worked in a time sheet for a task. This needs to be in HH:MM format only. The hours needs to get summed up for a particular task. If it increases 24 hrs then it needs to again get updated like total hrs worked on…
D.P.
  • 429
  • 1
  • 3
  • 9
3
votes
1 answer

jQuery time picker and MVC validation - the field must be a date

I have a property named StartDate in my model. I have used timepicker add-on to jquery.ui plugin from here. It is working fine, but problem is that I'm getting validation error message. How can I change validation so that it passes for…
TheVillageIdiot
  • 40,053
  • 20
  • 133
  • 188
2
votes
1 answer
2
votes
2 answers

How to set start time and end time in fullcalendar from input textboxes using jquery timepicker

In my modal I have two input textbox startTime and endTime using jquery timepicker I'm able to stick the event in the right date selected from the jquery ui calendar but How can I get the values from Start Time and End Time then set those values in…
Francis Saul
  • 728
  • 2
  • 16
  • 37
2
votes
1 answer

cmb2 (wordpress) how to change timepicker minute step?

I have defined the field like this (CMB2 wordpress): $cmb->add_group_field( $thevar, array( 'name' => 'timer', 'id' => 'expire_date', 'type' => 'text_datetime_timestamp', …
webelizer
  • 418
  • 2
  • 11
2
votes
1 answer

set 'Now' button of jquery-ui-timepicker.js to UTC timezone

I am using jquery-ui-timpicker-addon.js. I have to set timezone in GMT instead of local time. In below code I am able to change the time in GMT but the date is not updating accordingly. Please let me know $.datepicker._gotoToday = function (id)…
user2521071
  • 21
  • 1
  • 4
2
votes
1 answer

Jquery UI timepicker add-on firing parsing error

I keep on get an error when using this the JQuery time picker add-on from here trentrichardson.com/examples/timepicker/ I don't know what's wrong with it and no matter what I do it doesn't change. my code goes something like this JavaScript var…
2
votes
2 answers

Want to show two timePickers on one html page

This is my code for one timePicker but i am unable to show two timePickers on one HTML page. The below code is working fine for my one timePicker but i am unable to make Logic that how i should use id's which are different on both inputs . …
user2046756
1
vote
3 answers

Jquery plugin timepicker doesn't rebind after switching jquery tabs and returning in asp.net mvc partial views

Currently I am working on displaying different input forms on tabs in asp.net mvc 3. Each tab has several child partial views. [See the image below] 1 of the partial views contains a form for creating Sessions, and above it is another partial…
1
vote
1 answer

Change event on Timepicker works in JS Fiddle, not in production/development environments

I have a simple timepicker element like this: I'm just testing that on change of the…
james
  • 3,989
  • 8
  • 47
  • 102
1
vote
0 answers

How to set minTime in pm and maxTime in am for a Timepicker input?

I need to set minTime in pm format and maxTime in am (i.e) minTime is today's noon and maxTime is tomorrow's morning. below is the snippet i used. $('.fromtime').timepicker({ stepMinute: 5, 'minTime': '5:00 pm', 'maxTime': '2:15 am' });…
1
vote
2 answers

jquery timepicker not displaying dropdown

I am using jquery-timepicker, and it is not displaying the dropdown when I click on the input box. In my view: /* ... */
Musical Shore
  • 1,361
  • 3
  • 20
  • 41
1
vote
1 answer

angular (jquery timepicker) unable to get value of input

I want to make a custom directive with the jquery plugin timepicker. I'm not getting the input value in the console, it says undefined. here's a plunkr
Time From Time…
user5186342
1
2 3 4 5