Questions tagged [clockpicker]

It is a clock-style timepicker for Bootstrap or jQuery.

ClockPicker was designed for Bootstrap in the beginning. So Bootstrap (and jQuery) is the only dependency(s).

Since it only used .popover and some of .btn styles of Bootstrap, I picked these styles to build a jQuery plugin. Feel free to use jquery-* files instead of bootstrap-* , for non-bootstrap project.

31 questions
0
votes
3 answers

How to restrict minute selection in clockpicker.js

I'm using the jQuery clockpicker plugin for some forms. I need to display only quater interval in minute section like 00 15 30 45. I read all the document but not able to find out the disable time section. I have found an example in timepicker.js …
0
votes
2 answers

Jquery compare Start time and End time display NaN

When i try to compare end time not greater start time It return every time display NaN. jQuery.validator.addMethod("checkTime", function(value, element, options) { var start_times = options.val(); #15:00 var end_times = value; #14:00 …
Mayur Panchal
  • 659
  • 6
  • 25
0
votes
0 answers

HOW to work clockpicker

i embed the clockpicker,it can work,but when u change time,it can't be changed if just have clockpicker code,it's ok but combine with modal code,the time answer couldn't be change... i don't know what's wrong with it ,can anyone help me to resolve…
mayyola
  • 1
  • 1
0
votes
1 answer

get data from multiple clockpickers in the same page

I have cards on my php page. These cards are from my sql. The page goes like this: $getsql = "SELECT * FROM 2dopuzzler ORDER BY tableid"; $itsresult = $conn->query($getsql); // Good one... $current_cat = null; while($row =…
0
votes
0 answers

how to implement a datetime picker in ionic 2 to select time range

I want a clock-picker like the below image, where I can select a time range. As I have to select start and end time of an appointment using this time-picker, can anyone please help
0
votes
2 answers

Set bootstrap clockpicker's MIN time according to another clockpicker's selected value for same day

I have four textboxes two for date and two for time to set a reminder like: from 27/07/2017 9:00 to 28/07/2017 14:05. I am using jquery datetimepicker to select date and bootstrap clockpicker(the clock style picker) to select time. I have already…
0
votes
1 answer

Jquery clockpicker on hide get the time

I am using the Jquery clockpicker (https://github.com/weareoutman/clockpicker). Is there a way that you don't have to push the "Done" button to get the new time in the input field? I have tried jQuery Clockpicker afterHourSelect but when I log out…
Joshmon27
  • 11
  • 3
0
votes
2 answers

clockpicker - jQuery Format Time

I need to format time, for example I have a value 01:05 I need to add am or pm to time. $('.clockpicker').clockpicker({ afterDone: function() { var time = $('#time').val(); console.log(moment(time…
user3351236
  • 2,488
  • 10
  • 29
  • 52
0
votes
2 answers

Bootstrap clock picker in modal is not auto adjusting when it is bottom of the model

I am using bootstrap Clock Picker plugin. When I use picker in modal, it is not auto adjusting when it is in bottom of the modal. so that I am not able to view the picker completely. When it is in the bottom of the page, it should come on top of…
0
votes
1 answer

How to avoid displaying the bootstrap clockpicker when its input is disabled?

I'm using the clockpicker plugin in a page the clock can be enabled or disabled dinalically without reloading the entire page. So, when I load the page I initialize only if its enabled. $(document).ready(function () { …
Ivan
  • 180
  • 1
  • 2
  • 16
0
votes
1 answer

Bootstrap Clockpicker plugin not working with angular

Hi I am bit new to angular, I have used a code in my view which references a clockpicker bootstrap plugin to pick the time.
Vr1010101
  • 49
  • 10
0
votes
0 answers

How to make add minutes in clock picker?

I've seen this CLOCK PICKER example and I notice that the minutes is in 5 minutes interval. I would like to make it a 1 minute interval each so I can choose what I want. So for example is 10:32 like that. But how do i edit it?. Or it is already…
0
votes
1 answer

Clockpicker setting default time to now in textbox and knowing AM or PM

I am using the clockpicker from http://weareoutman.github.io/clockpicker/ and I am trying to figure out how to show the time in the value of the textbox. I have been able to set the 'now' time as default on the clock but I am having two…
David Brierton
  • 6,977
  • 12
  • 47
  • 104
0
votes
2 answers

How to auto format clockpicker?

I am using clockpicker(https://github.com/weareoutman/clockpicker) and I want to auto format time when type input field. Here is the clockpicker code: $('.container').each(function(){ var clockpicker = $(this).find('input').clockpicker({ …
Bhumi Shah
  • 9,323
  • 7
  • 63
  • 104
-1
votes
1 answer

Clockpicker scrolling instead of change time

I'm using this plugin https://github.com/weareoutman/clockpicker to display a clockpicker selector. Works fine when I test it on my browser but I need to run my application in a 7" tablet and when I'm trying to change the time the page is scrolling…
User1899289003
  • 850
  • 2
  • 21
  • 40