datepicker

Date Picker / calendar UI Component with draggable date ranges

I'm looking for a datepicker control (HTML + JavaScript / Flex) that allows selecting a range of dates by dragging along the calendar dates (just like in Google Calendar or Outlook) It can be open source (preferable obviously) or commercial, and should be server technology agnostic. Outlook date range selection Google calendar d...

how to add a day to a date using jquery datepicker

Hi, I have 2 textboxes on my site for pickup date and drop off date both using the jquery date picker. I am having trouble setting the drop off date value to be one day ahead of the pickup date that was selected. Here is what I have: $('.pickupDate').change(function() { var date2 = $('.pickupDate').datepicker('getDate', '+1d'); ...

How do I use the onselect method of Jquery to goto a URL?

What I want to to is pretty basic. I have files that are number with dates, and when someone clicks a date on the calendar it should open that file. For example, if someone clicks november 20th it should go to nov/20.htm or generally {month}/{day}.htm. I've looked at the documentation and it mentions something about being able to call ...

jQuery Datepicker - Disable weekends / holidays and the next three working days combined

Using this rather neat approach I can disable weekends and holidays from the datepicker. However, I want to combine this with the disabling of the next three business days from today's date. Simply setting the minimum date is relatively easy: var dateMin = new Date(); dateMin.setDate(dateMin.getDate() + 3); $(function() { $('#txtColl...

jQuery: restricting the datepicker

hi all, i couldn't figure out on how to do this (using minDate): by default i want my datepicker only allowing to pick dates >= today. how would this work? thx ...

Silverlight Toolkit DatePicker error indicator

I don't seem to be able to get the red border line error provider for my date picker controls. I'm throwing validation exceptions on the setter of the bound to property as I have with my other controls on the form. I get the error indicator on all my controls on the form but the date picker ones. any help appreciated. ...

positioning of date picker in extjs

I'm using the date picker but I am a little confused about where it decides to place the date picker on the screen. On one screen it's fine but on another it gets stuck hiding behind a flash object. Can I force it to attach to the bottom right corner of the place where the datebutton is clicked? I was looking in firebug and it seems to j...

date_select Ruby

How do I extend the range of the date_select in Ruby? It only goes as far as 2005 and I'd like to use it for the date of birth. ...

jQuery datepicker. How to insert datepicker.gif after input field

How to insert an image after the input field when using jQuery datepicker? I expect to use the function: buttonImage. My jQuery code: jQuery('.datepicker').datepicker({ buttonImageOnly: true, buttonImage: 'http://finansraadet.opengate.dk/images/arrowH3.gif', // dayNamesMin: ['man', 'tir', 'ons'...

JQuery UI Datepicker Current Day

Hello, My page uses a JQuery UI Datepicker and loads with the current day selected and weekends and selected dates restricted. I would like the current selected day to become unavailable at 2pm and the day move forward. Can anyone help. ...

can i have dynamic date pickers using jquery by class selector

i have a dynamic html table and in one column i want a jquery ui date picker. A few questions: Can i have datepicker by class instead of id: $(document).ready(function(){ $(".datepicker").datepicker(); }); Can i create them on the fly if i i am adding in textboxes with this class using jquery? ...

how can i format jquery datepicker as "25-JAN-2009"

i would have thought this was: .datepicker({ dateFormat: 'dd-mmm-yyyy' }); for month, i get some number that i dont understnad where they are coming from: ...

Why jQuery UI datepicker can't works in jQuery dialog modal ?

Hi, I want to use jQuery UI datepicker in one of my text inputs. This one is in a dialog modal. In fact, I can call datepicker in the normal document text inputs and i got my calender normally but I can't do that in dialog modal text inputs (after clinking inside modal text input I got nothing without any JavaScript error). This is my...

jQuery datepicker questions

First : Is it possible to set either an option or to easily change jQuery UI core code so the datepicker will always show a fixed amount of rows(/weeks) ? Displaying a month takes either 5 or 6 rows/weeks, and the difference in height is not something I want using an inline datepicker. Answered: hardcode the variable numRows in ui.dat...

jquery ui datepicker when used in inline mode shows multiple months in single verticle column

Hi I am using jquery ui 1.6 datapicker. It is working fine in popup mode. I wanted to use in a way so that a user can give multiple input using datepicker which shows multiple months. But in popup mode datepicker don't accept multiple input at once. Therefore I thought of using in inline mode. but in this mode it is showing all months i...

jquery date picker split into multiple fields

I have the usual Jquery datepicker working fine. But I want to feed it into a set of selectboxes rather than one textfield. I have had success feeding it into one select field with a specific format but am unsure how to feed all three into different fields with different formats. $(document).ready(function(){ $("#search_startdate")....

Datepicker with jQuery

I once saw a datepicker where the month and year where in 1 (and the same) select box, how do I do this (with options/hardcoding) The css file also gives a clue of this possibility (select.ui-datepicker-month-year) so does anybody know the answer ? And also, I know you can show the first/last days of the next/previous month as well, but...

jQuery datepicker changing input value automatically

So I'm building an application where data is coming back from a database where the date could be in many different formats, ie '2008', '05/22/99', '8/20/2004'. And lets say, for example, a user wants to edit a date (2009) by clicking the "Edit" button. Well in the edit window it SHOULD show an input box with the year '2009' already prese...

Flex: Set datechoose to only choose Month/Year

I am builder a graph that is going to cover an entire month. The user may change the Month/Year but there is no point in choosing a date for the month as it is going to show the entire month anyways. So is there a way to maybe make the DateChooser date always the first and only allow the user to pick the month and year? Thanks!! ...

jquery datepicker, dates range count

Hello, i am trying to sum up or deduct dates in selected range using jquery datepicker, here is how i am doing it right now but without any luck. function test(){ var sundayCheck = 0; var saturdayCheck = 0; var totalDays = 0; sundayCheck = new Date($("#onlySunday").datepicker("getDate")); saturdayCheck = new Date(...