Tagged Questions

3
votes
6answers
70 views

Jquery - Get the time in HH:MM format between two dates

I am getting the values from two text fields as date var start_actual_time = $("#startPoint_complete_date").val(); var end_actual_time = $("#endPoint_complete_date").val(); which gives value ...
3
votes
1answer
274 views

Jquery Date Picker On Multiple Input Fields

I have a page in which there are multiple input fields that is fromdate and todate. I have created dynamic ids and name. I have used jquery date picker. Code: <?php $i=1; ...
2
votes
2answers
45 views

Format a date after putting it in a variable?

I'm using a DatePicker to let someone pick a certain week. The html is basically like this: <form method="post" action=""> <input type="text" id="beginDate" /> <input ...
2
votes
1answer
185 views

Highlight <TR> entire week datepicker

I have a datepicker that is fully functional and is working whereby you can select an entire commencing working week (Mon-Fri). What I am now trying to do is extend it a little further so that when I ...
2
votes
2answers
360 views

jquery ui date picker limit to Sundays

I have looked at some of the answers here to this type of question but could not get them to work how I needed them to. I need to have my jQuery UI datepicker only allow Sundays in the past to be ...
1
vote
3answers
31 views

Why is datepicker beforeShowDay not acting as expected

I'm having trouble with a datepicker that I have created. I am using a very similar datepicker on the same page with no issue at all. The date picker shows with no selectable days, even though when ...
1
vote
0answers
56 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" ...
1
vote
3answers
137 views

jquery ui datepicker take value 1970 if input field is blank

i am using jquery ui date picker for take fromDate and toDate Following is the code of from date <input name="from_date" id="from_date" maxlength="20" size="20" type="text"/> ...
1
vote
2answers
80 views

jQuery datepicker with today as maxdate

I would like to set today's date as a maxdate for jQuery datepicker in order to prevent users from picking date greater than today's date
1
vote
1answer
98 views

Show jQueryUI datepicker on button press without involving input field

In an ASP.NET project, I'm looking for a way to have a jQueryUI datepicker come up when I press a button, then cause a postback when a date is selected. I've gotten the postback part working using ...
1
vote
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" ...
1
vote
1answer
482 views

jQuery UI Datepicker altField .change function not working?

Can anyone tell me why the console.log line isn't getting run when I select a date with the jQuery UI Datepicker? Thanks for reading. <script type="text/javascript"> ...
1
vote
2answers
525 views

jQuery datepicker displaying a Buddhist date

Is there any jQuery datepicker plugin to display as Buddhist date? Currently I use the jQuery UI datepicker to display it, but it's not actually I want. Here is the code: $(document).ready( ...
1
vote
2answers
630 views

How to subclass a specific jqueryui widget method?

Since I updated jQueryUI to 1.8 I found a couple of issues in our implementations and I could fix it myself without waiting for a fix on their end if I could find out how to subclass a specific method ...
1
vote
4answers
3k views

jQuery Datepicker: Prevent closing picker when clicking a date

Hi fellow stackoverflow:ers, I'm using the jQuery Datepicker plugin, together with Martin Milesich Timepicker plugin. Everything works great, except for the fact that clicking a date in the ...
0
votes
1answer
13 views

Disable past dates in datepicker js

I want to disable all the dates in calendar which is lesser than today. I tried adding $("#ctl00_MainContent_tbxLetterDate").datepicker({ minDate: +0 }); But it dosent work, Here is my code.. ...
0
votes
2answers
53 views

Date-picker is shown in the left offset, how to show it in the right?

I am trying to find here http://jqueryui.com/demos/datepicker/#options how to initialize/show the datepicker according to the right offset (I was performing a demo but i dont know why this fiddle ...
0
votes
1answer
29 views

Does anyone know how to format the Jquery Datepicker

Does anyone know how to format the Jquery datepicker? I want it to display it like dd/mm/yyyy and that is the only way I want to display it, but at the moment it is displaying it like mm/dd/yyyy. I ...
0
votes
1answer
126 views

jquery mobile datebox custom alignment

I am currently using jquery mobile datebox (http://dev.jtsage.com/jQM-DateBox/) to display a calendar. I stuck the input in a div with display: none, and then I manually activate the calendar with the ...
0
votes
1answer
43 views

jQuery UI DatePicker inline

I want alert the date selected by user. I am using datepicker as inline, have tried below code but it doesn't work. where #cal is my div. Thanks in advance. $(function () { ...
0
votes
1answer
151 views

Does Richfaces 3.3.3 ship with jQuery-UI

I have jquery working in my Richfaces 3.3.3 application. I added the following to include it from Richfaces: <a4j:loadScript ...
0
votes
2answers
101 views

jquery datepicker daterange, specify start year

I'm using the date range with jquerydate picker. <script> jQuery(document).ready(function(){ // binds form submission and fields to the validation engine ...
0
votes
2answers
72 views

no focus event for jquery datePicker?

I've got the next code: $("#fecha_fin, #bf_fin").click(function(){ if( $("#fecha_inicio").val() == "" ){ crearModal( "Alerta", ...
0
votes
1answer
51 views

Using jQuery datepicker with Chronic

I'm trying to get a nice combination working for the strengths of the jQuery datepicker, and Chronic date parser for Ruby on Rails. The jQuery UI date picker is useful for selecting a date visually. ...
0
votes
2answers
206 views

set or show date in textbox with jquery-ui datepicker

I have problem to set or show date in datepicker textbox at firsttime I have two textboxes, the one is for datepicker and the second is for alternate format. <input type="text" ...
0
votes
2answers
349 views

jQuery DatePicker - selecting a whole week

I'm using two jQuery datepickers to select a dates range. Is there a way to select a whole week? This means that when opening the start datepicker, there will be two selection methods: Select a ...
0
votes
1answer
150 views

jQuery UI datepicker css customization

Let's say I want to display a datepicker. This datepicker represents a disponibility calendar from an hotel room. Knowing this, I want before displaying fetch data from the server to know the ...
0
votes
0answers
175 views

DatePicker to only allow selection of month and year

i'm trying to get my date picker to only show month and year, but can't seem to get this to work: using the code below from jquery date picker to show month year only For one, I can't get the ...
0
votes
1answer
278 views

option to change jquery ui datepicker to just a “yearpicker”

I'm checking datapicker documentation here trying to find a way to change it from a full display date picker to just something where I can pick a year only. But I can't find anything. I tried ...
0
votes
3answers
140 views

Prevent users from manually entering dates in input boxen

I am using the jQuery datepick plugin on two input boxes, and would like to prevent users of my Web site from manually entering dates in those input boxes. How could I do that? I think I could cancel ...
0
votes
2answers
2k views

How do I format date in jQuery datetimepicker?

I use jQuery datetimepicker which was extended from jQuery datepicker to pick not only date but time too. I want to set date/time format this way: dd-mm-yyyy @ hh:mm ...
0
votes
2answers
177 views

trigger function on “gotoCurrent” with jQuery datepicker

I very happy using the datepicker from jQuery UI. and the onSelect: function... works perfectly. But: How do I go about triggering a function when I click the "gotoCurrent"-button beneath the ...
0
votes
1answer
474 views

jQuery UI datepicker IE problem

I checked related posts but none of these answered my question. So this is the code i use: <script type="text/javascript" src="/media/datepicker.js"></script> Inside the datepicker.js i ...
0
votes
1answer
439 views

JQuery Restricting Date Range Based on Dropdown

I'm using the JQuery DatePicker to have the user pick a date and have that show up in a textbox. Easy enough. However a restriction I'm working on is that the date range is restricted based on the ...
0
votes
1answer
131 views

How do I disable the button wrapper for jquery-ui-datepicker?

See this sample page. The icon I want to be using is this: The icon, as shown on the page, looks like this: How can I make DatePicker use my original icon without modifications?
0
votes
1answer
881 views

Highlighting dates between two selected dates jQuery UI Datepicker

I have one datepicker with numberOfMonths set to 2. Arrival Date and Departure Date are determined using this logic (within onSelect): if ((count % 2)==0) { depart = ...
0
votes
1answer
86 views

prevent autodropdown by jquery datepicker

when I append jquery datepicker to my asp textbox, by clicking on it, my browser auto shows the history of the dates i typed in a dropdownlist. Can I prevent this? Set textbox to readonly isn't a ...
-1
votes
1answer
61 views

Disable current + next 3 working days [closed]

Possible Duplicate: Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)? I am using jQuery Datepicker. What i want to do is select a delivery date of ...