0
votes
2answers
44 views

Cannot load datepicker and widget for a dynamically loaded input box

This is the html part <html> <head> <script src="./js/ajax.js" type="text/javascript"></script> <link rel="stylesheet" ...
1
vote
0answers
61 views

Jquery datepicker highlight specific dates fetched from ajax

I am using jquery date picker (http://api.jqueryui.com/datepicker/) in my page. In the page I have a dropdown for program list. Beside the dropdown there is a textbox on clicking which will open the ...
-3
votes
1answer
129 views

jQuery ui datepicker enable dates for visible month via AJAX

I have a jquery ui calendar running on website only certain dates are enabled based on the previous drop down selections (this is a mysql query to get dates, here i am getting dates for entire year) ...
0
votes
1answer
60 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 ...
0
votes
0answers
56 views

Jquery UI Datepicker via Ajax call, issue in hiding weekdays dynamically

Here's my code var hideweek; var day; var cloDays = new Array(); function initdatepicker(hideweek){ var splitWeek = hideweek.split("&&"); $.each( splitWeek, function( skey, svalue ) ...
-3
votes
1answer
131 views

Calculate End Date, based on start date and drop down list of number of Package in cakephp

I would like to know if this is possible to calculate an end date based on user picking a start date and a select list of number of package. i.e. I select a silver package and choose a start date of ...
0
votes
0answers
31 views

jquery ui datepiker odd behavior on ajax loaded partials views

on my aplication i have a view, this view contains a table (jqgrid) to search for users, after a user is selected, an ajax call loads a partial view, that partial view contains a list of roles, but ...
0
votes
1answer
47 views

Issue in adding dates in datepicker

I have 2 datepickers binded to 2 text boxes(Chkin and Chkout). When I select a date in Chkin Im supposed to show Chkin+1 date in Chkout. But Chkout date are not properly filled in some cases. Can ...
0
votes
1answer
358 views

Jquery ajax posting date

I'm baffled why my controller is not recieving the startDate parameter.. from the jquery datepicker My thoughts are it has something to do with the format. In this scenario I cant force it using ...
1
vote
1answer
399 views

disabling weekends , holidays in jquery datepicker

I'm using jquery ui date picker for selecting the start date and end date of a leave.when a user tries to select the leave commencing date i'm disabling holidays and the leave days which are already ...
0
votes
1answer
95 views

How to pass date object to a function

I have a jQuery datepicker plugin along with some text fields. I pass the field content data to the function using AJAX. I am obtaining object object when I alert the value of var dateObject = ...
0
votes
0answers
179 views

jQuery Datepicker Submitting via onSelect and Blur

I have a jQuery datepicker that I am trying to send data to a service on. Currently, I have two events tied to the datepicker to post: onSelect and datepicker.on('blur'). The blur event only posts if ...
1
vote
2answers
368 views

Retrieving and Comparing Dates using JQuery And PHP

I am using jQuery's datepicker in wordpress/PHP and I am using this code to show dates: <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(function() ...
0
votes
0answers
81 views

How do I hook up a datepicker to a rails model using ajax?

Update: I figured this issue out! Code that worked for me is updated below. I'm new to Rails (and programming generally) and trying to use a jQuery datepicker combined with Ajax to return data from ...
0
votes
0answers
100 views

How to fire jquery datepicker onselect event explicity?

Can we fire Jquery Date picker On select event explicitly on Page Load? I am pre populating the date in date picker, so I want to fire an ajax call based on the pre populated date. Thank you!
1
vote
2answers
2k views

JQuery datePicker not working for dynamically created input element

I am trying to integrate the jquery datepicker to an input field which i am creating dynamically using script.. my script is like... function getDate(id) { $('.pop-up-link').show(); ...
1
vote
2answers
1k views

jquery functions not working within an ajax loaded jquery tab

I'm having trouble getting jquery functions (datepicker and dialog) to work within an jquery ajax loaded tab. I keep getting a "datepicker is not a function" or "dialog is not a function" when I ...
2
votes
4answers
725 views

How can I compare a start date and end date using the jQuery Datepicker?

I use the jQuery Datepicker for two different text fields. One field for start date and another for end field. I disable date before current date using minDate. My code is like this: $( "#start" ...
-2
votes
2answers
449 views

ajax datepicker jquery ui

I have a table which should return values based on the date submitted. I want to make the datepicker send an ajax request to the server whenever the date has been changed. I am looking for a sample ...
4
votes
1answer
2k views

Select only specific dates in jQuery UI datepicker (date list comes from AJAX)

Here I send movie id and get available days and I want to set it into calendar. but it is not working and it disable all dates. from the php it returns date string. date string is coming correctly but ...
1
vote
0answers
429 views

I can't get the jQuery datepicker to show on my page after loading with AJAX

My main page is index.php. I'm loading a section of the page with AJAX and I would like to also load a datepicker in the same section I got all relevant JS: <script type="text/javascript" ...
0
votes
1answer
483 views

DWR callback updating dom elements, jquery ui datepicker attached to updated element not showing up

I have a search form on which I have the following INPUT field <input id="pickUpDate" name="pickUpDate" readonly="true" /> When this search form is accessed I can see the date picker ...
1
vote
1answer
258 views

Jquery datepicker cloning issue

The problem is here i can't add datepick(); functionality to newly created items. Everythig works fine except that. The first elements which named as date1 and datep1 are has datepick and works so ...
0
votes
2answers
1k views

jquery datetime picker is not working after jquery ajax called?

i am using jquery datepicker on jsp page and when i call ajax to load some data from server and on success of ajax data loads to div tag after that i cant see the datepicker. when i click on ...