datepicker

How to get the dateFormat from jQuery UI datepicker?

In my page, the datepicker dateFormat option is being set automatically by loading a localized .js file according to the current users's language settings. Elsewhere in the page, I need to format some dates, so I'd like to get the dateFormat option back out of the datePicker. The jQuery documentation says you can retrieve the dateFormat...

Need a JQuery Plugin for a datepicker that does not display year, just days and month.

I am looking for a datepicker for JQuery which allow my users to specify specific parts of the year. For example I want them to be able to pick summer months (April 01 - Sept 01). This data is going to be applicable every year so the actual year is irrelevant. Are there any datepickers out there that can do this for me. Or am I looking f...

jQuery Datepicker to Trigger a POST

hi, i want to use jquery UI's datepicker to trigger a POST that would then load information from the date picked on the datepicker from my database. so i guess this is a two-part question is there a way i can make it so the datepicker date, when selected, just gets passed into a POST, so someone would click on jan 1 2010 and it would a...

How can I determine the bottle neck on page load?

I have a page that uses jQuery UI, and calls the datepicker on 2 different text boxes. Without the calls, ie. just loading the page without attaching any datepickers, the page loads in 1.20 seconds. With the datepickers attached, the page loads in 3.92 seconds. (this is in firefox) How can I get this speed up? Based on the network graph...

jQuery Datepicker and Timepicker for same input field to popup one after another

I have a Datepicker and a Timepicker in 2 separate input fields but I need to combine the 2 fields inputs into one for a database call. Wanted to know if I could only use 1 input field for both controls? first call the datepicker and the user would click the date wanted and it would enter the value, then the timepicker would popup and a...

How do I use callbacks to load a JavaScript function inside a ModalBox?

I am using Wildbit's ModalBox to load an external page in a modal window. I'm trying to get a datepicker JS script to run inside of this modal window, but it just...won't work. I know ModalBox has callback functions, which allow you to execute a function after the modal window has loaded; for example: Modalbox.show(url, {afterLoad: fun...

jQuery DatePicker causing Flicker in IE

Hi, I am using JQuery datepicker plugin and globally setting all fields with certain class name to use that ( $(".date-field").datepicker({ showOn: 'both' });) This causes the forms with a date field in them to flicker. I was wondering if anyone knows any workaround for this. thanks ...

Don't work Today button in jQuery Datepicker

Hello. I'm using jQueryUI Datepicker and show "Today" button. But it doesn't work. It also doesn't work in demo: http://www.jqueryui.com/demos/datepicker/#buttonbar I'w want to fill input with today when press this button. Is it possible to get it works? ...

jquery datepicker onChangeMonthYear

I am using the jquery ui datepicker in my app. I have created an inline datepicker. I am having a problem with onChangeMonthYear. I have simplified the example to bare minimum. Onclick of "prev" or "next", the calendar should: - Go to the previous/next month accordingly. Set the first day of that month as the current selected date. al...

WPF toolkit DatePicker change default value 'show calendar'

Hi there! I'm using the latest WPF toolkit, specifically the DatePicker. Everything works fine, but when no value is provided, the default 'SHOW CALENDAR' text appears in the DatePickerTextBox. I want to be able to change this value in WPF. One told me to download the source, add a new Dependency property and recompile to dll. That's c...

jQuery DatePicker Bug?

Hi, I'm using jQuery DatePicker and it shows wrong date for November, 2009. You can see this in my sample page. http://project-base-23.codepremise.com/door/test_calendar Is this a known bug? How can I fix it? Thanks. Sam ...

Date time picker

I am developing a C# application where user can select any date time format and display in date time picker.How to change the format of date time picker in code? ...

How to style a DatePicker ?

I downloaded a WPFToolkit source, because I wanted to override the default generic template of a DatePicker. For example, I wanted to override this TextBox: <primitives:DatePickerTextBox x:Name="PART_TextBox" Grid.Row="0" Grid.Column="0" Foreground="{TemplateBinding Foreground}" Ho...

jQuery UI DatePicker question

Hi, I have 2 input fields and i am using it with a DatePicker like this $("#depart, #return").datepicker({ showOn: 'both', buttonImage: 'images/icon_calendar.gif', buttonImageOnly: true, numberOfMonths:2, dateFormat: 'dd-mm-yy' }); At some point i want to remove the return field and i am doing it with the .re...

Open JQuery Datepicker by clicking on an image w/ no input field

I want to have the JQuery Datepicker open when the user clicks on an image. There is no input field where the selected date appears afterwards; I'm just going to save the entered date to the server via Ajax. Currently I have this code: <img src='someimage.gif' id="datepicker" /> $(document).ready(function() { $("#datepicker").date...

Unable to hijack Datepicker function again?

>>> var date_time_datepicker = jQuery('#date-time-date').datepicker({inline: true}); >>> date_time_picker.getDate(); #=> undefined ...

Create Silverlight DatePicker control programmatically

I am trying to add a DatePicker control to my page programmatically, but intellisense is not picking up the DatePicker type as I would expect. MSDN shows this control as being part of System.Windows.Controls I have referenced this assembly in my project, and in my usings statement, but still VS cannot recognise the DatePicker type. ...

datepicker - open popup by clicking a href tag

I wonder how I can call the datepicker script from a link, something like <div id="datepicker_popup"><a href="#">Choose Date</a></div> and submit the chosen date to a PHP page. Any ideas? Thanx, chris ...

Do you know a date picker to quickly pick one day of the current week?

Most date pickers allow you to pick the date from a tine calendar or enter the date by hand. For example http://jqueryui.com/demos/datepicker/ This requires - two clicks (one to display the calendar and one to select the correct date) - good eyesight (usually the pop-up calendar is very small) - and good hand-eye coordination to pick t...

Silverlight DatePicket and TimePicker initialization

I'm using DatePicker and TimePicker from the toolkit. I've got to hook up on the SelectedDateChanged event and I'm also setting the values in code. My issue is that when I initialise both controls the SelectedDateChanged event doesn't get fired synchronously. That's quite a big issue for me because it means I initialise the control and ...