The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages. You can customize the date format and language, restrict the selectable date ranges and add in buttons and other navigation options easily. More information can be found on the jQuery UI ...
8
votes
4answers
677 views
Rails 3 jquery date picker date not saving to database
When I submit my form I can see the date being sent to in the post. However, It doesn't save the date. If I do a date check it says it is not in the proper format. Here is my date picker function, ...
5
votes
2answers
4k views
Datepicker in jquery mobile is duplicate when is added in a second page
I'm needing some help with the datepicker use in mobile app.
I'm using the jQuery UI datepicker in my app. But the datepicker is show twice (duplicate) when I put it in the second page. However when ...
5
votes
3answers
891 views
jQuery UI 1.7.3 datepicker conflict with date.js causing “too much recursion”?
I'm trying to use jQuery UI 1.7.3 datepicker widget in a jQuery UI dialog. The contents of the dialog are from a page template which includes all the various imports of javascript required to make ...
5
votes
1answer
536 views
Proper way to add a callback to jQuery DatePicker
DatePicker has an internal function, _adjustDate(), which I'd like to add a callback after.
Current Method
This is how I'm currently doing this. Basically, just replacing the function defintion ...
4
votes
2answers
458 views
Memory leak using jquery-ui/datepicker
I'm using these scripts (where jquery-ui[].custom.js is the datepicker plugin):
<script src="../../Scripts/jquery-1.5.1.js" type="text/javascript"></script>
<script ...
4
votes
3answers
458 views
Attach a jQuery dialog to a text field and make it disappear when the user clicks something else?
I like the jQuery DatePicker widget. It is very user friendly that when the user clicks on a date field in my web application, the user sees a dialog that allows her to select a date.
What's even ...
3
votes
1answer
30 views
How to add additional event handlers to a jquery-ui datepicker instance?
I've got a datepicker with an onSelect event handler. Later in my program, I want to add other onSelect handlers. Problem is, they wipe out the first one. (Fiddle.)
How can I add additional handlers ...
3
votes
4answers
167 views
jQuery on not working
I want to attach a event to dynamically created element class.So i used live function but it was not triggered. So checked live function reference ,there i red below notes
As of jQuery 1.7, the ...
3
votes
1answer
54 views
jquery ui datepicker. How can I show ALL of the possible years (for the birthdate)?
I'm using jquery ui datepicker with changeYear.
The problem is that it shows the years in chunks (from 1985 to 2005, then clicking on 1985 opens other years) I need to show ALL the years in the range ...
3
votes
2answers
90 views
Using jQuery and jQueryui to set the minimum date in a datepicker
I'm using the following jquery and jqueryui to take the value of the first datepicker and make it the minimum of the second -- but I think I need to chain it to a blur event to make sure that as the ...
3
votes
2answers
243 views
Webkit date parsing [closed]
Possible Duplicate:
Safari JS cannot parse YYYY-MM-DD date format?
I have a simple function to calculate the amount of days between to dates.
function checkDias(){
str1 = ...
3
votes
3answers
519 views
jQuery DatePicker Too Large
I've implemented the jQuery datepicker. It seems to be working fine but the calendar is too large.
The site I'm working on has many layers of stylesheets and parent pages and controls. And I don't ...
3
votes
1answer
273 views
jQuery UI Datepicker - How to alter Datepicker HTML
I need to make a few simple changes to the Datepicker HTML generated by the jQuery UI Datepicker e.g. adding some brief text after the calendar table.
I have been trying to do this using the ...
3
votes
2answers
172 views
How to open second UI Datepicker on closing the first one
I´m trying to add some functionality to a form with JQuery UI´s Datepicker.
When a user selects the arrival date (onSelect), a few things should happen:
Update the departure to 3 days after the ...
3
votes
3answers
390 views
jQuery datepicker custom rules help, please
At the moment I have a datepicker which:
Excludes today, if after 12:00 midday.
Excludes sundays.
<script type="text/javascript">
$(function() {
// get today's date
...
3
votes
1answer
606 views
JavaScript Mimics of the iPad's UI (specifically, UIDatePicker and UIPicker)
Does anyone know a way to mimic the UIDatePicker and the even more general UIPicker iOS controls in HTML & JavaScript?
Does anyone know of a solution like this? I've seen JavaScript mimics of ...
3
votes
3answers
923 views
Change displayed month in jQuery datepicker, depending on another datepicker instance
I have two datepicker fields, one is 'start date' the other is 'end_date'.
I would like to have the feature that, after user selected 'start date', then the 'end date' calendar should show by ...
3
votes
1answer
169 views
jQuery Datepicker - Half Day?
Has anyone come across a method of being able to choose half a day using a jquery datepicker? Basically, I'd like users to be able to select from Monday PM to Friday AM, if you know what I mean.
3
votes
3answers
1k views
Date validator on DatePicker trigger false negatives in IE7/IE8
I have some basic validation on a form which includes two jQuery UI DatePickers. The format of the date is yy-mm-dd. There is a required and date validation on both DatePickers.
These work as ...
3
votes
1answer
782 views
jquery datepicker and custom validation
I need to add custom validation(I think) for validating input from an user. Here's my use case:
I'm using the jquery ui datepicker for selecting dates, with localization like this:
...
3
votes
1answer
1k views
How to clear a read only jQuery date picker textbox?
We have a JQuery date picker control on a read only text box. We make the textbox read only so users can't enter their own dates. This works great but we want to provide the users the option to ...
2
votes
3answers
14 views
jQuery UI Datepicker Clear Dates Issue
Working with jQuery UI Datepicker for the first time, and I bumped into a little problem:
When I choose a date in the max date/to date textbox, it restricts the dates I can choose in the min ...
2
votes
1answer
107 views
jQueryUI datepicker for date-range is failing to validate when date text box is cleared with keyboard
I am using jqueryUI datepicker for a date range as in this demo. This is failing to validate To as future date to From in the following case:
In FROM date choose 11/19/2011. Now go to Nov month of ...
2
votes
1answer
210 views
jQuery ui-datepicker's calendar table width overflows ui-datepicker
The following screen shot shows a jquery ui datepicker that, up until recently, was displaying correctly:
The class associated with the problematic table is ui-datepicker-calendar, which is nested ...
2
votes
1answer
132 views
Jquery DatePicker set to not auto-open
<div id="newSwitchDialog">
<span id="name"></span><br /><br />
<table>
<tbody>
<tr>
...
2
votes
2answers
129 views
jQuery Datepicker shows in upper left corner
I found some similar questions, but none of them were applicable to my situation.
I have 2 text fields on a page. Clicking on a text field opens a datepicker calendar. It works just as intended.
The ...
2
votes
0answers
68 views
jQuery UI Datepicker uuid bug?
I'm extending the datepicker in my code by resetting the _generateHTML function in beforeShow, i.e. $.datepicker._generateHTML = function(a) { .. }
This way I can do whatever I want to the buttons on ...
2
votes
1answer
173 views
Using jQueryUI Datepicker And Input Masking Together
First of all check live example . There is a mask for dates on text box. Also there is a jQueryUI datepicker. They are working very well but when i choose a date with datepicker, text box's mask is ...
2
votes
1answer
310 views
jQuery datepicker popup's problem (opens again after the date was selected) in IE 9
I met the problem with datepicker in IE 9 (FF and Chrome work fine).
When the user selects some date, popup hides, but after that it opens again. How to fix this?
the code to bind input text with ...
2
votes
1answer
103 views
is there any way to disable animation for jQuery ui-datepicker only for ie6?
I am using jQuery UI 1.8.11 datepicker. It works good for FF/Chrome but fails to load properly on IE6. One solution I found to make it work on IE6 is to disable the animation (i.e. showAnim: none). ...
2
votes
3answers
2k views
jQuery Date Picker - TimeZone Issue
We are using a jQuery date picker on our website to select dates and times for bookings. The calendar is currently set at PST and this causes bugs when users try to access from other timezones. ...
2
votes
1answer
2k views
jquery datepicker not working in IE7 and IE8
This is my js:
$(document).ready(function() {
$("input#dateTill").datepicker();
});
My HTML:
<input type="text" name="dateTill" id="dateTill" class="input" value="20.1.2011" maxlength="10" ...
2
votes
3answers
920 views
jQuery UI Datepicker won't accept unix timestamp as default value
I have the Unix timestamp "1264529457", which translates into January 26, 2010, which is stored inside an input element named "america".
When initializing jQuery UI's Datepicker, I have the following ...
2
votes
1answer
761 views
Change the font color of weekend dates in jquery datepicker
Is it possible to change the font color of dates that fall on the weekends in jquery calendar? I try to use the class ui-datepicker-week-end but it only change the font color of Sun and Sat. What I ...
2
votes
1answer
311 views
Can a jQuery UI datepicker be matched to a click event's target?
I've written a simple jQuery (1.4.2) UI (1.8) widget that embeds a jQuery UI datepicker. I'd like to detect when a user clicks outside my widget, in which case it should automatically hide itself. ...
2
votes
0answers
391 views
How can I disable keyboard shortcuts for jQuery UI date selector?
I'm having a problem with the jQuery UI date selector, where when manually changing the date and hitting the enter key, the date selector date overrides the manual entry (the action I'm going for is a ...
2
votes
2answers
5k views
jQuery DatePicker: Get Selected Date
I need to be able to grab the selected date from the Datepicker and populate another textbox with the selected value. I am currently using the onClose function like this:
...
1
vote
1answer
23 views
Disable all Sundays except one in jQuery UI Datepicker
I'm trying to set up jQuery UI datepicker for my clients' websites, and it needs to hide certain days, as well as all Sundays EXCEPT mothering Sunday. Currently my code, borrowed heavily from another ...
1
vote
1answer
50 views
jQuery datepicker exclude dates
I want to do varies type of exclude dates from jQuery datepicker ui. Those are below.
Single Date : one or more specific dates.
Recurrent day : The days should always disabled from calender ...
1
vote
1answer
92 views
jQueryUI Datepicker in Dialog auto focus in IE9
I'm able to load and reopen jQueryUI Dialogs with a Datepicker as the first element in all browsers I've tried ... except IE 9.
If a Datepicker is the first element to receive focus when the Dialog ...
1
vote
2answers
62 views
Issue with JQuery Date Picker in Modal Window
I created a modal form/window using with the code:
$(function () {
var widthLen = window.screen.width - 10;
var heightLen = window.screen.height - 120;
...
1
vote
1answer
17 views
jQuery ui datepicker img only showing on homepage
I'm using a reservation widget running with the jQuery ui.
http://www.hearthstoneresort.com/
When you view the home page, the calendar buttons beside arrival and departure show up fine, but if you ...
1
vote
1answer
122 views
jQuery UI $.datepicker () Does Not Exist for Google Code CDN (Works Locally)
When I link to the jQuery UI file stored on Google's servers with the following code in my :
<script type="text/javascript" ...
1
vote
1answer
151 views
Datepicker within a select dropdown
I'm wondering if the following may be possible using something like jQuery. I've looked all over but haven't found a solution.
I am using MVC 3/razor for my project. I have jQuery 1.5.1.
We want a ...
1
vote
0answers
80 views
jQuery UI Datepicker Causes Internet Explorer to Crash
I'm experiencing an issue where jQuery UI's Datepicker is causing Internet Explorer (versions 8 and 9, maybe others) to sometimes (but not always) crash. IE crashes about 25% of the time on page load ...
1
vote
2answers
141 views
jQuery ui datepicker questions
I am having two text fields From, To.Here i want to do many things with is two fields.
I want to select next three days on selected date.Which means,if I am selecting jan 1,2012 in From field , then ...
1
vote
0answers
58 views
jQuery datepicker automatically append second field with first field input
I am using to datepicker fields, one for a Start date and one for an End date. I have got everything almost working as I require however I am struggling to get the End date field to update ...
1
vote
1answer
154 views
jQuery Date Picker - disable past dates
I am trying to have a date Range select using the UI date picker.
in the from/to field people should not be able to view or select dates previous to the present day.
This is my code:
$(function() {
...
1
vote
2answers
86 views
How to hyperlink the selected dates in jQuery Datepicker UI?
Can anybody help with this task? I am not a javascript guru and got stuck little bit. I'm using a jQuery Datepicker UI to create events calendar.
I want to hyperlink the selected dates (with events ...
1
vote
4answers
266 views
ASP.NET MVC datetime culture issue when passing value back to controller
How can i tell my controller/model what kind of culture it should expect for parsing a datetime?
I was using some of this post to implement jquery datepicker into my mvc application.
When i submit ...