datepicker

jQuery datePicker below UI dialog?

Hi, See Example After clicking the show container link the datepicker component - 2nd input - is shown below the UI dialog. What should I do to show it above the UI dialog? ...

jQuery UI datepicker input class

I'm quite fresh on jQuery, and I've just implemented jQuery + jQuery UI, but on the datepicker widget it seems like the classes added on the inputs from before are removed, and datepicker classes are added insteady. How can I keep my classes as well? ...

jquery datepicker getMonth() weirdness

Hi all, jquery datepicker is a great fun but I am facing a weird error. I am trying to disable some days, ie. 28 October 2009 but 28 November gets disabled on the calendar! Any idea what I am doing wrong here? The disabledDays array variable is a script registered on the server as the closing dates come from database. <script type="text...

jQuery DatePicker and JQuery Modal Popups Issue in MVC

I have a situation where I have a form with: a view popup1 (with popup1.js) popup2 (with popup2.js) I have set the input boxes to have a class of either popup1Date or popup2Date in case the issue was coming from having them all set to the same date class. The isuse occurs if I go into popup1 - close - then into popup2 - select a da...

jquery datepicker 2 - how to pass in a list of event dates

i see there is a new version of the jquery datepicker http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/ i dont see anywhere, that you can pass in a list of dates to have then highlighted (i am building a calendar tracking tool). so i might want to show holidays in blue or a certain list of dates in green. I am trying to use...

JQuery datepicker - set callback order

I'm using the JQuery datepicker and show it to the user with some days disabled. Certain users in my site can mark some days in an agenda as 'being available', their working hours so to speak. Their availability has to be reflected in the calendar to other users. I have searched the web for this, and it seems that one should use the bef...

jQuery UI Datepicker: Highlight 7 days

Hey, I am using the jQuery UI Datepicker. It is set to inline so it is displayed to the user all the time. The datepicker allows you to select one day however I want to be able to select a week (of seven days) So if the user clicks for example on Wednesday 2009/10/14 it should not only highlight the 2009/10/14 but highlight all days f...

Jquery DatePicker loading in the back side of the textbox - css problem

Hi gurus, I am actually having a list of text boxes. I am using below code to load a date picker at each text box location when the text box is in focus. But If I click on top text boxes the date picker is loading at the background of the below text boxes even though it is starting at the clicked text box. I think this is css conflict of...

Disable specific dates in jquery

I am using the jquery date picker found here: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerStartEnd.html that allows the user to pick a start and end date. However I want to be able to disable specific dates. I tried to implement the code found here: stackoverflow.com/questions/501943/can-the-jquery-ui-datepicke...

Jquery .live works but not with .datepicker

Thanks for looking, all sincerely helpful answers are up-voted. I have some date input fields that are there when the page loads and a bunch that get generated dynamically. Instead of calling .datepicker() on that class each time a new instance is generated, I'm using .live, but it doesn't seem to be working. Any idea why? $("input[name...

JQuery UI Datepicker, reverse the order of the year in the dropdowns

I have a datepicker with changeyear: true. The 'year' drop down displays the title as 2009, then instead of the next year below the title being 2008, 2007, 2006 and so on it starts at 1999 and counts upwards. I can't seem to find an easy solution to reverse this order? ...

jQuery datepicker doesn't work

Hi, I can't get the jQuery datepicker to work. I have followed everything from the jQuery UI manual. Can you please check my code below? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="C...

Intercept Silverlight DatePicker's convert from text to DateTime

Hi, I want DatePicker to convert the following text pieces to DateTime (shown in international format) so my customers can write a date in DatePickers textbox faster so it is not just DateTime.Parse I will use: "3" to 2009-10-03 "14" to 2009-10-14 "1403" to 2009-03-14 "140310" to 2010-03-14 "14032010" to 2010-03-14 I have tried diffe...

How could I change the color of individual dates in a Jquery UI calendar widget?

Given an inline JQuery UI datepicker, I want to change the background colors of individual dates. So I want to be able to set "October 5th, 2009" to green and "11/6/209" to red. How could I do this in JQuery and as the datepicker is scrolled month to month what event would I catch to update the background colors of individual dates? ...

Help Merge two jquery functions

Hey I have a datepicker, i want to only allow fridays to be selected, and i dont want any dates older than todays date to be selected. I have two functions. Both work when they are used seperately, but not when they are both present, i have tried, but cant merge them together, how do i do it? Thank you //Get todays date ...

How can i get Jquery UI datepicker to show up in asp.net gridview edit field

I have a gridview inside an update panel, that is doing inline editing. When edit is clicked, I need on of the textboxes to be a Jquery UI datepicker; I've tried class and id selectors, tried child selector but Jquery can't set the thing as a datepicker because the element isn't really on the page yet. So I tried adding a function to ...

Are there any modifications to the jQuery UI datepicker which adds time selection?

Are there any modifications to the jQuery UI datepicker which adds time selection? I googled and I found this, but I don't really like the sliders... Is there something else? Thanks. ...

jquery datepicker default date

I am trying to get a attribute of a date picker to pull the date dynamically, however I get uncaught exception errors when I try to set it to a variable. The errors only occur on pages that do NOT have the calendar (inline). How can I pul the rel tag from the selector without getting this error? //Event Calendar Home Page and Listing f...

Edit WPF Toolkit to get the DatePicker only.

I am doing a small application and i need a DatePicker control, So i use the WPF toolkit datepicker. After completing my application I notice that my application exe has of size 250k and the WPFToolkit dll has a size 442k. So i am extracting the datepicker control from the toolkit by deleting the other controls from it. But it is not wor...

Clear the Min/Max dates of RadDatePicker client-side?

According to Telerik's documentation, to set a RadDatePicker's mindate or maxdate properties client-side, you are to use the two methods set_minDate() and set_maxDate() respectively. I initially thought that simply passing in null into these methods would remove any constraints on the controls, but it does not seem to be the case. Does...