Reputation:
I would like to check if the value of a DatePicker
is null (== no date in the box).
By default the Text
of my DatePicker
is set to something like Select a date
, so I can't use the Text
property to check.
Upvotes: 10
Views: 39484
Reputation: 11
to = $('#to');// hopefully you defined this yourself and the options
//I am writing coffeeScript here, below I will add pure JS
if to.datepicker('getDate') == null
//basically do your stuff here -
//using month_day_year_string (m_d_y_s) func to format a date object here and add 6 to the date's year so passed e.g. 2014 gives 2020.
return to.datepicker('option', 'minDate', getDate(this), to.datepicker('option', 'maxDate', m_d_y_s(getDate(this), 6)))
return// I have this on a call back so I am returning from the call back
In pure JS it would simply be
var to = $('#to');// hope you defined the options and datepicker
if (to.datepicker('getDate') === null) {
#do your stuff - I have an example code below as I needed this check in a callback
return to.datepicker('option', 'minDate', getDate(this), to.datepicker('option', 'maxDate', m_d_y_s(getDate(this), 6)));
}
return;// if on a call back e.g. onChange or onRender.
Upvotes: 0
Reputation: 2612
The DatePicker class has a property, SelectedDate, which enable you to get or set the selected date. If there is none selected, it means its value will be null.
if (datePicker.SelectedDate == null)
{
// Do what you have to do
}
Upvotes: 13
Reputation: 39976
Although the default text of the DatePicker
is Select a date
but you can use the Text
property to check by using Text.Length
. Or check SelectedDate
property like this:
if (datePicker.Text.Length == 0)
{
//Do your stuff
}
Or:
if (datePicker.SelectedDate == null)
{
//Do your stuff
}
Upvotes: 1