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
1
vote
1 answer

Using the jQuery UI Timepicker Addon with React

I am attempting to use the jQuery UI Timepicker Addon in a React component that I am writing. However, whenever I try to use it I get an error that the "datetimepicker" function that the Addon adds to jQuery is not defined. I think part of (or maybe…
Matthew Herbst
  • 29,477
  • 23
  • 85
  • 128
1
vote
2 answers

destroying fgelinas jquery-ui-timepicker

I am using this time picker. Problem is, when I navigate to another page while the time picker is shown, it will still be shown on the next screen when it loads. How do I destroy the timepicker? Have tried the below but to no…
chongzixin
  • 1,951
  • 4
  • 28
  • 55
1
vote
2 answers

how to add hours to selected time?

I am using time picker like: $('#time').timepicker({ 'minTime': '9:00am', 'maxTime': '8:00pm', …
user3264841
  • 183
  • 2
  • 5
  • 13
1
vote
1 answer

Missing Instance Data for this DateTimePicker

I am having these two textboxes for start date and end date. On These two textboxes I use datepicker. Also I am having an uplodify on this page. When I fill the date on these textboxes and click on upload button to upload picture. I got the…
1
vote
1 answer

How to make a Time Picker in jQuery mobile 1.4.0?

I have the following time input in my jQuery mobile app for android , I want to make a time picker for this input as the native Time picker in android devices . How can i do a time picker in jQuery mobile 1.4.0? Please help me ...
user
  • 621
  • 15
  • 46
1
vote
1 answer

set hourMin, miniteMin vales dynamically for jquery ui time picker

How to set hourMin, miniteMin values dynamically for jquery ui time picker, like if date is today i want allow the user to select only above the current time & if date is greater than current date then allow user to select from 0 - 23 hours. i tried…
Dyapa Srikanth
  • 1,231
  • 2
  • 22
  • 60
0
votes
4 answers

how to use jQuery Timepicker in mvc 3?

Until my brain get bleeding, still I can't solve this problem. I have to use jQuery timepicker on my textbox in mvc3-View. Inside my Layout.cshtml @ViewBag.Title
fiberOptics
  • 6,955
  • 25
  • 70
  • 105
0
votes
1 answer

Timepicker issue with defaultTime

i am using time picker my code and options are given below : var options = {timeFormat: 'h:mm p', interval: 15, maxTime: '11:45pm', startTime: '12:00', defaultTime: new Date(),dynamic: true, dropdown: true, scrollbar:…
0
votes
2 answers

jQuery Timepicker onChange update same field

I am using this jQuery timepicker: http://jonthornton.github.io/jquery-timepicker/ I want to show the list in human readable times, but need the form to submit the time as HH:MM:SS. It does not look like this plugin allows the user to have two…
Jake Haas
  • 73
  • 7
0
votes
1 answer

jQuery UI Timepicker off by 1 minute

I'm maintaining an application which uses the jQuery UI Timepicker and trying to troubleshoot a bug. Basically, this is how to re-create it: There are 2 timepickers, start time and end time 1. on the start-time, select 6:00am (from the hour…
onefootswill
  • 3,707
  • 6
  • 47
  • 101
0
votes
5 answers

jQuery timepicker time format not working

I have a timepicker form element: which I'm trying to format but it's not working: I followed the documentation and added timeFormat like so: …
14wml
  • 4,048
  • 11
  • 49
  • 97
0
votes
1 answer

Add time to string of hh:mm:ss javasctipt

I have the following string returned by my web service: '10:00:00'. It is successfully being disabled in my timepicker via: $('#appointmentTimeTextbox').timepicker('option', 'disableTimeRanges', …
Dan Wier
  • 334
  • 5
  • 16
0
votes
1 answer

jquery-ui-timepicker - custom dropdown with 2 different time range (for morning and afternoon)

i have to customize jquery-ui-timepicker from https://github.com/jonthornton/jquery-timepicker The goal is to introduce a break into a specific time range: my initial code here jQuery(".my_time_field").timepicker({ "minTime": "10:00", …
pat-och
  • 345
  • 3
  • 17
0
votes
2 answers

Angular directive instances $watch not working

I have two timepicker inputs that has a total that I need to calculate. The code in my directive works fine but the problem comes when I have more than one of the directives on the page. I tried setting the watches in my directive's controller or in…
johan
  • 998
  • 6
  • 20
0
votes
1 answer

How to check if jQuery properties have been set in JavaScript and PHP?

Before I being, let me clarify I am a newbie to jQuery and JavaScript. I'm sorry if the answer is obvious Okay, I am trying to create a page where the user can select dates and times, and want to use JavaScript and PHP to make sure the user is not…