Skip to main content

All Questions

0 votes
1 answer
2k views

Date picker giving undefined value

I am trying to get the date while clicking the submit button. In the console the other 2 data fields value is being sent but not the date. The calendar is being displayed and the date comes in the ...
cod05's user avatar
  • 49
0 votes
1 answer
760 views

jQuery Datepicker in Fancybox not working

I have a very strange behavior with a datepicker loaded with data-type="ajax" inside the fancybox. It is not possible to change month and year in the datepicker. If I open datepicker and close the ...
Marco's user avatar
  • 3,593
0 votes
4 answers
281 views

Different action on several DatePicker

I currently have a form in which there is 2 datePicker (Jquery UI). On the first one, when I "mouseenter" a date, I do an AJAX call to get a response (and it works). The problem here is that the AJAX ...
Alexandre's user avatar
  • 355
1 vote
2 answers
1k views

How can i prevent the flicker of jQuery´s datepicker when changing month?

I have created a jQuery datepicker that has some days coloured (weekends, holidays). The fact is that the decission to colour that days depend on a ajax call that returns which days of the month have ...
Jaime's user avatar
  • 361
1 vote
1 answer
1k views

Delete Date using backspace or delete

I have created multiple dates selection for multiple input fields using jQuery datepicker. Now Problem is i want to delete any date form cursor position External Link to Jquery ui <link rel=...
daulat's user avatar
  • 949
0 votes
2 answers
106 views

Why initialize the jQuery in $.ajax() success when adding fields?

I am using a jQuery datepicker on .datepickerTime and .datePickerDate classes. $('.datepickerTime').datetimepicker({ 'timepicker': false, 'mask': false, 'format': 'M d,Y', 'minDate': ...
unknownbits's user avatar
  • 2,875
0 votes
1 answer
53 views

just showing months on date picker

I have condition that when I put some value, the jqueryui datepicker shows days and when I put another value, the datepicker just shows months function setdate(q){ var d=new Date(); ...
sidzaky's user avatar
  • 57
2 votes
3 answers
3k views

How to highlight dates with jQuery's datepicker

I'm using Jquery UI datepicker to allow a user to fill a date input by selecting a date out of a displayed a calendar. So far, everything works as expected : http://jsfiddle.net/Aut9b/374/ Then, I ...
Ramzi G.'s user avatar
0 votes
2 answers
683 views

can't load datepicker into ajax tab

i can't have a datepicker work inside tab loaded via ajax. here the script on my main page: <head> <meta http-equiv="Content-type" content="text/html; charset=ISO-8859-1" /> &...
Manuel's user avatar
  • 41
1 vote
0 answers
260 views

jQuery Datepicker not open in jQuery Dialog after ajax call

may you help me with a problem i tryed to solve this whole afternoon? I have a jQuery dialog, which i am filling up with the results (a php-script) of an ajax call. In these results there is a ...
Tommay Webber's user avatar
4 votes
5 answers
12k views

jquery datepicker doesn't work after ajax call if its already on page

I have a datepicker input (call it X) on my page already. There's a button that when you click on it, it makes an ajax call and prints some html stuff on page. Inside that ajax response, there's ...
user avatar
2 votes
1 answer
7k views

jQuery UI Datepicker - Refresh available dates

I am using jQuery UI datepicker for my calendar. I have used the beforeShowDay function to block out days which are unavailable. This data comes from an AJAX call which when successful I then populate ...
Elliot Reeve's user avatar
-1 votes
1 answer
2k views

jQuery UI Datepicker and execute Ajax after selecting a date

I'm not sure if it is possible and if how can I handle it - execute Ajax on date select from datepicker. I'm not getting any errors from Ajax part in the console. In a div ID 'prorated' I'm getting "...
JackTheKnife's user avatar
  • 3,994
0 votes
1 answer
706 views

Jquery UI Datepicker Works, but unable to select date

I am using Jquery UI datepicker the code I am using is as follows ps_jquery( ".datefield " ).datepicker({ changeMonth: true, changeYear: true, yearRange: "-100:+10", }); This code is working fine ...
user1666910's user avatar
1 vote
1 answer
871 views

datepicker ui onChangemonthyear runs before beforeshowday

I use the jquery Datepicker ui. (http://jqueryui.com/datepicker/) I want to color the days as i get back from ajax which dates to color. I have this: $(document).ready(function() { ...
RobinHo's user avatar
  • 575
1 vote
1 answer
185 views

jQuery datepicker changes in date format

the below code isn't working for me. The date switches from 15/5/2012 to 05/15/2012 whenever I try to change it. <script> $(document).ready(function(){ $("#date").datepicker({ }); ...
methuselah's user avatar
  • 13.1k
1 vote
2 answers
4k views

ASP.NET MVC: jQuery UI DatePicker Set minDate and maxDate from Model on AJAX Loaded Page

I have a dialog form that pops up and its content is loaded using the jQuery load function. On that ajax loaded page there is a jQuery UI datepicker and in the Model that I pass to the view, I have ...
Nick Olsen's user avatar
  • 6,349
0 votes
2 answers
4k views

Can I use the onSelect jQuery UI DatePicker event with an inline date picker?

I'm trying to use the jQuery UI datepicker as an inline calendar. A user clicks a date on the calendar, and it runs an AJAX request to return data only from the chosen date. The AJAX function I've ...
k_woodhouse's user avatar
0 votes
1 answer
327 views

jQuery AJAX call with datePicker working everywhere except IE 6, 7

I am having a tough time figuring out why this piece of jQuery code isn't working in IE 6 or 7: $("#date").datepicker({ dateFormat: "mm-dd-yy", altFormat: "yy-mm-dd", altField:...
Aaron's user avatar
  • 10.7k
0 votes
1 answer
895 views

How to make days enabled in UI datepicker after month change?

Original question link: Help! How to make days enabled in UI datepicker after month change? First of all, The solution of Nick Craver is wonderful. But I got another problem: The Nick Craver's ...
qinHaiXiang's user avatar
  • 6,319
1 vote
1 answer
2k views

jQueryUI DatePicker Customizing the Year

I have a Datepicker using jqueryui DatePicker. The behavior requirement is: A User can store a Birthdate for a friend. The User should be able to store a year if known, or select "N/A". If "N/A" ...
kinet's user avatar
  • 1,780
32 votes
13 answers
42k views

jQuery UI datepicker opens automatically within dialog

I have a datepicker which is used within the jQuery dialog object. The source of the dialog's content is loaded using .load(). Within the dialog I created a script which creates a datepicker for the ...
turezky's user avatar
  • 856