67 questions
0
votes
1
answer
434
views
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: ...
2
votes
1
answer
2k
views
jquery ui time picker pick current time and hide today's passed time in time picker select box
My input field as per below-
<input type="text" maxlength="8" placeholder="" class="time-icn form-control ui-timepicker-input valid" name="ReminderTime" id="ReminderTime" class="ReminderTime" ...
0
votes
2
answers
3k
views
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 ...
0
votes
1
answer
535
views
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. ...
0
votes
5
answers
16k
views
jQuery timepicker time format not working
I have a timepicker form element:
<input type="text" name="start_time" class="timepicker" placeholder="Start Time*" required>
which I'm trying to format but it's not working:
I followed the ...
2
votes
2
answers
12k
views
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 ...
0
votes
1
answer
528
views
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',
...
0
votes
1
answer
2k
views
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("....
0
votes
2
answers
91
views
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 ...
2
votes
1
answer
372
views
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'...
0
votes
1
answer
78
views
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 ...
0
votes
1
answer
21
views
Get time difference without $watches
I have a fixed table with a fixed number of rows. Lots of rows of timepicker input boxes and it would be great if I could update the total input's model by calculating the difference every time one of ...
1
vote
1
answer
595
views
Change event on Timepicker works in JS Fiddle, not in production/development environments
I have a simple timepicker element like this:
<input class="pickuptime_end" id="pickuptime_end" name="pickuptime_end" placeholder="Time" size="10" type="text" value="10 pm" style="display: inline-...
0
votes
2
answers
4k
views
"TypeError: $(...).timepicker is not a function" in Jquery Time picker
Trying to Attach jquery time picker plugin to textbox in asp.net project.
But when running in firefox getting the error "TypeError: $(...).timepicker is not a function".
and the below files used in ...
1
vote
0
answers
891
views
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,
'...