datepicker

Need a free datepicker for ASPX

What is the best FREE Datepicker that can be dropped into an ASPX application? ...

How can I make a datePicker work

I'm also new in programming and I want to make a date Picker that displays in 2 labels 2 different dates from the same date Picker. ...

JQuery Datepicker with text input that doesn't allow user input.

How do I use the JQuery Datepicker with a textbox input: $("#my_txtbox").datepicker({ // options }); that doesn't allow the user to input random text in the textbox. I want the Datepicker to pop up when the textbox gains focus or the user clicks on it, but I want the textbox to ignore any user input using the keyboard (copy & paste,...

JQuery Datepicker returned Date object type

What's the object type returned by Datepicker? Supposing I have the following: $("#txtbox").datepicker({ onClose: function(date){ //something } }); What is date? I'm interested in reading the date object from another Datepicker for comparison, something like: function(date){ oDate = $("#oDP").datepicker(...

How to use JQuery UI datepicker with bgIframe on IE 6

I am trying to use the JQuery UI datepicker (latest stable version 1.5.2) on an IE6 website. But I am having the usual problems with combo boxes (selects) on IE6 where they float above other controls. I have tried adding the bgIframe plugin after declaring the datepicker with no luck. My guess is that the .ui-datepicker-div to which I a...

jQuery UI: Filter selectable dates on datepicker

I want to filter the selectable dates on a datepicker. I basically need to filter by work days - i.e. make holidays and weekends not selectable. I know you can specify dates using a function in the beforeShowDate: and you can also use $.datepicker.noWeekends. Question is: can you do both? ...

JQuery DatePicker bundled control can't be included in other controls

I've been tasked with implementing a Date/Time selector for several areas of our web project, and instructed to use a control that another developer created as part of it. The control I'm working on is supposed to allow the user to choose a date from a calendar, choose a format for the display of that date (from several pre-defined form...

jQuery datepicker years shown

With the jQuery datepicker, how does one change the year range that is displayed? On the jQuery UI site it says the default is "10 years before and after the current year are shown". I want to use this for a birthday selection and 10 years before today is no good. Can this be done with the jQuery datepicker or will I have to use a dif...

JQuery datepicker- 2 inputs/textboxes and restricting range

I am using the Jquery datepicker plugin with two input boxes, one for the "From" date and the second with the "To" date. I am using the JQuery datepicker functional demo as a basis for getting the two input boxes to work with each other, but I need to be able to add these additional restrictions: Date range can be no earlier than 01 De...

Date Picker for iPhone Web Application

What is best way to show Date Picker for iPhone based Web Application. Can we show something like iPhone native date picker like shown below in web application: ...

jQuery UI Datepicker and datejs

I want to have a datepicker where you can also just type basically I want to have the jQuery UI Datepicker and datejs in one. I want to type "tomorrow" and I want it to select the right day. I want to be able to type "saturday" and it actually getting the date right. ...

Adding Date Picker to view programatically?

Can someone illustrate (or point me to a good tutorial) on how to add a Date Picker to a view programatically (i.e., without using the interface editor)? ...

JQuery DatePicker, how to highlight current input value date?

I'm using the datepicker control for jquery and all is well except that I cannot get it to highlight the currently selected input value (or the current date for that matter). Even though I have s valid date value in my text input and can get the datepicker to return the correct month / year, I cannot get it to highlight that date on the ...

Calendar (date-picker) control for mobile devices in ASP.Net

Hi, I'm looking for a calendar control (aka date-picker) that works on mobile devices. The problem is most devices are w/o JavaScript, or with poor JavaScript support. ASP.Net's built-in control uses JavaScript to do post-back. ASP.Net has a mobile calendar control, but it isn't fully localizable (on low end devices where it displays a...

jquery datepicker display problem in IE 6.0

Hello all, I have a display problem with jquery datepicker in IE 6.0. The border of the datepicker pop-up is not shown in IE 6.0, the background of the pop-up window is white (should be gray) and the back- and forward navigation icons are shown in a wrong color. FF and later versions of IE are showing the expected correct result. Am I ...

jQuery Maximum Amount Of DatePickers

I have a rather frustrating problem where the maximum number of available DatePicker's on one page seems to be twenty. I can't find any documentation referring to this. If I had a page with 100 text boxes, and did the following: $(document).ready(function() { $(".datepicker").datepicker({ duration: '', dateFormat: 'dd/mm/yy' }); }...

How to change date format in Silverlight DatePicker control?

This works great: <my:DatePicker IsTodayHighlighted="True" Width="200"> </my:DatePicker> But I want to format the date, something like this: <my:DatePicker IsTodayHighlighted="True" Width="200" Format="yyyy-mm-dd"> </my:DatePicker> Anyone know the syntax for this? ...

How do I make a custom display for a jQuery datepicker?

Is it possible to show calendar as shown below using jquery datepicker. OCT-2009 Mon Tue Wed Thur Fri Sat Sun 28 29 30 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ...

jQuery UI datepicker translation

How can I translate the datepicker from jQuery UI into an other language (german for exaple)? ...

Reading the g:datePicker-value in Grails without using the "new Object(params)"-method

Let's say I have a datePicker called "foobar": <g:datePicker name="foobar" value="${new Date()}" precision="day" /> How do I read the submitted value of this date-picker? One way which works but has some unwanted side-effects is the following: def newObject = new SomeClassName(params) println "value=" + newObject.foobar This way o...