0
votes
1answer
37 views

Date time picker with mobile xpages

I realize a mobile application with xpages.I am having a problem with the date time picker that appears not perfectly on mobile device. I tried to incorporate uidatepicker of jquery, but again I ...
0
votes
1answer
138 views

datetimepicker jumps back to 1899 on focus, how can I fix it?

I am using date time picker http://trentrichardson.com/examples/timepicker/ to select date and time. However, there is something weird is happening when I click on the input field to select the data. ...
0
votes
0answers
125 views

Is There Any sfWidgetFormJQueryDate bundle for Symfony2

I am now using Symfony 2.1.8, I had a datetime field in my form. When those were the times of Symfony 1.4, I used to use sfWidgetFormJQueryDate plugin for date widgets, by defining an calendar image ...
0
votes
0answers
110 views

Display Timepicker horizontally

How can I display the timepicker horizontally of Jquery UI date and time picker. The time picker is shown below the date picker but I want to show timepicker at the right side of the datepicker. I ...
0
votes
0answers
364 views

input[type='datetime'] in Chrome: the format sent by the browser is wrong

I have an input[type='datetime'] which, as expected, is not decorated by the native datepicker in Google Chrome 24+. If I enter a datetime in this input (ex. 2013-01-30 12:32) and submit the form, ...
1
vote
1answer
298 views

How to set date per 'Today' click for jquery datetimepicker instance?

I have multiple jquery datetimepickers on a page. Trying to set the date on 'Today' button click but the following sets for all of the datetimepickers on the page? How do I set only the one that ...
1
vote
1answer
339 views

Disabled Automatic date value changes during Next/Previous actions in jQuery DateTimePicker

I'm working with Trent Richardson's great Datetimepicker plugin for jQuery UI's datepicker. One issue however that I wish to resolve is the fact that when you select a field, and then navigate ...
0
votes
2answers
734 views

How to set “default” date (day highlight) on datetimepicker?

Per Trent Richardson's datetimepicker...How can I set the 'default' date on the calendar? The following works for setting today as if it were selected/clicked: $( ".selector" ).datepicker( ...
0
votes
1answer
335 views

How to set date (for current day as highlighted) on calendar for jquery datetimepicker?

I'm using the Trent Richardson's datetimepicker here. How can I set the date on the calendar? The following sets the time correctly but the date as highlighted as current day is not getting set. In ...
1
vote
1answer
180 views

Stop Automatic Entry Next / Previous Month Datetimepicker

I'm using Trent Richardson's great Datetimepicker. However, I'm running into a specific issue in which the plugin does not act like the traditional jQuery UI Datepicker. When you start with a blank ...
0
votes
2answers
1k views

How to set 'Now' button on jquery UI datetimepicker to set UTC time?

I'm using the datetimepicker here. How can I set the now button so that it sets time UTC now instead of the current now per browser?
0
votes
0answers
515 views

jquery-timepicker-addon doesn't appear

I'm trying to use the jquery-timepicker-addon by Trent Richardson however after following all the instructions, I have application.js //= require jquery //= require jquery_ujs //= require ...
2
votes
1answer
406 views

jquery-ui-datetimepicker-addon returned value always has time set to 00:00

I am calling $("#from_date").datetimepicker("getDate") and no matter what the hours/minutes scrollers are set to, the returned value has its time part set to 0. What am I doing wrong / missing ?
2
votes
2answers
303 views

Convert DateTimePicker to Unix, and Back again

Is there any easy solution for translating a unix timestamp like this: 1350664800 Into a human readable date like: 10/19/2012 11:40 AM ? I'm working on alerting the jQuery UI datepicker (with ...
3
votes
2answers
3k views

DateTimePicker AM/PM Dropdown

I'm using (and loving) datetimepicker, the great add on to the jQuery UI Datepicker. However, I'm using the dropdown option (you can see all of them here -- ...
1
vote
2answers
2k views

jQuery datetimepicker formatting in rails 3.2

I'm using the following datetimepicker which from my understanding is the jquery-ui datepicker that has been extended. http://trentrichardson.com/examples/timepicker/ My issue is I want to display ...
0
votes
1answer
539 views

jQuery datetimepicker separator - setDate always sets today's date

Have a look at this jQuery datetimepicker example (go to the Examples tab, "Utilities" example). If you try to run the following in your browser's console: ...
0
votes
1answer
2k views

jQuery datetimepicker addon not working when attached to div rather than input element

I am using the jquery Trent Richardson datetimepicker addon which is working fine when linked to a text input (see link below). http://jsfiddle.net/many_tentacles/xnn3M/1/ However, when I attach it ...
0
votes
1answer
2k views

JQuery UI - Set minTime on timepicker based on other timepicker value

I'm trying to set the minTime of my "End Time" timepicker based on what I've selected in the "Start Time" timepicker. I have this, based on something that works for the regular date picker, but it's ...
0
votes
1answer
1k views

Validate jQuery datepicker and time picker

I am using jquery datepicker and timepicker.Clicking on date and time it assigns the value to the respective textbox.But I want to do clientside validation like the selected date should be the greater ...