Top "Datepicker" questions

A datepicker is a user interface element in many frameworks that allows a user to choose a date and also, in some cases, time, often through a visual calendar.

JQuery Datepicker - onSelect Date Format

Using this: $(function () { $("#datepicker").datepicker({ onSelect: function (date) { var links = "http://google.co.uk/"; window.location.href = links + date; } }); }); To …

javascript jquery datepicker onselect
How to disable dates after today date in DatePickerDialog Android?

I want to disable all Next(after) dates from today date in DatePickerDialog. I am using below code to create …

android android-studio datepicker android-datepicker datepickerdialog
jQuery MultiDatesPicker for datepicker: Restrict range?

I decided to use this addon for the jQuery UI Datepicker, Wich seems to work great, for example: $(function () { var …

javascript jquery jquery-ui datepicker jquery-multidatespicker
Centering DatePicker control

I am using datepicker control from wpf toolkit. I need to center align the content in datepicker control. How can …

wpf datepicker alignment wpftoolkit
Android: Android 4.1 Emulator Invoking onDateSet Twice from DatePicker Dialog

My application was working perfectly on my Android 2.2 emulator. I then decided to test on an Android 4.1 emulator. The DatePickerDialog …

android datepicker emulation android-4.2-jelly-bean
jquery ui datepicker font size is huge

im trying to add a datepicker to my symfony application and i got it working, but the size of the …

jquery jquery-ui datepicker jquery-ui-datepicker
WPF toolkit, change date format in DatePicker

default date format in DatePicker is "yyyy-mm-dd" but i need "dd-mm-yyyy". This one solution doesn't work for me.

c# wpf datepicker toolkit
jquery ui datepicker. How can I show ALL of the possible years (for the birthdate)?

I'm using jquery ui datepicker with changeYear. The problem is that it shows the years in chunks (from 1985 to 2005, then …

jquery jquery-ui datepicker jquery-ui-datepicker
How do you get a DatePicker from a DatePickerDialog?

I have a activity that is popping up a android.app.DatePickerDialog. DatePickerDialog dialog = new DatePickerDialog(this, startDateSetListener, start_cal.…

android datepicker datepickerdialog
How to insert NULL into Django's DateField?

I have an optional datefield in my django model: award_grant_date = models.DateField(null=True, blank=True) When the …

django datepicker datefield