Tagged Questions
0
votes
0answers
30 views
Get more values from jquery date picker
Hi i am working with jquery date picker, i have custom days which are showing fine.
but i want to link more values to dates which are enabled. (for example id of the event on specific date). then on ...
0
votes
1answer
108 views
j-query date-picker does not work after post back
I have a j-query date-picker that does not work after the first post back. It only works before the post back but the date-picker does not work after post back. the text-box that shows the ...
0
votes
3answers
292 views
Automatically set end date on datepicker
when you select anything for a start date, the end date should automatically become the same as the start date on a single click in jQuery
var dates = $("#filterDateStart, ...
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 ) ...
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
2answers
356 views
How to disable dates in jQuery datepicker?
I have 2 datepicker for filling checkin text box and checkout text box. I have to enable only checkin+13 days in checkout datepicker.
What I tried is-
$("#Chkin").datepicker({ dateFormat: ...
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
1answer
641 views
Conflict occuring in Jquery datepicker with other existing Jquery code
I am a beginner nearing completion of my project. I have added this datepicker from JqueryUI as my requirement is that only "Sunday" should be disabled and date should be restricted from tomorrow to ...
1
vote
0answers
129 views
BlockUI over just jQuery DatePicker during AJAX call
I'm trying to use jQuery UI DatePicker with BlockUI during the onChangeMonthYear callback. During the callback, I'm issuing an AJAX call to get a list of available dates for the month and I want to ...
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
1answer
214 views
Parse ASP Web API JSON Result: DateTime
I am using jQuery ajax to call a Web API service. The response is Json something like this
...
1
vote
2answers
365 views
Getting first day of month in PHP 5.2.6?
I have following scenario: Datepicker for user to choose Year,Month, and use it to display records for the selected month. The selected value is passed to details_subcontractor.php, using Ajax. ...
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
votes
1answer
738 views
JQuery datepicker 'undefined' is null or not an object
When I want search another query on my view with datepicker, using $.ajax({}) and I doing click on datepicker after AJAX request, show me message 'undefined' is null or not an object.
Code datepicker ...
1
vote
0answers
710 views
text input datepicker enddate after startdate validation
I have 2 input boxes, startdate and enddate. I am trying to force the user to select a date in the 2nd input box that is after the date in the first input box. This will be validated on ajax save.
...
0
votes
0answers
351 views
jQuery datepicker - for loop issue in 'beforeShowDay'
I'm using jQuery UI's datepicker to make a calendar that displays events in a tooltip from a db that are pulled in via ajax and PHP. The problem I'm running into is, only the first event in the array ...
0
votes
0answers
246 views
Struts2 jquery datepicker is not working with jquery load() function
i am trying to load a particular div(out of many divs) which is in different jsp in main jsp page.The div i am trying to load contains form with struts2-jquery datepicker..form is loaded properly but ...
0
votes
1answer
386 views
Datepicker doesn't display the date on the text after an ajax call
I have a div ided as inPatientDecision, the contents for which are loaded dynamically through an Ajax call. The loaded content has a few HTML datepicker elements with class attribute set to ...
0
votes
1answer
327 views
Any+time Datepicker
<link rel="stylesheet" type="text/css" href="js/anytime.css" />
<script>
$(document).ready(function(){
$("#addsession").submit(function() {
...
0
votes
1answer
193 views
How do I activate jquery dialog boxes returned inside the tabs widget generated by an ajax datepicker event?
There must be a simple solution that evades me. However I am very new to jquery so I am sure that is part of the issue.
I have a datepicker instance which submits a date via ajax and has xhtml ...
0
votes
1answer
305 views
jquery.ui.datepicker is not loaded with ajax
i have an html page(mypage.html), which uses jquery.ui.datepicker
<table>
<tr>
<td valign="middle"><input type="text" name="from_date" id="from_date" ></td>
<td ...
0
votes
1answer
249 views
Datepicker doesn't execute when submitted
I have been working on this for days but I don't get it so I decided to ask here. I really have a hard time tracing where is the problem is in my code.. here my code:
$(".editME").click(function(){
...