Can I close the jquery datePicker pop up window on click event?
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-06-02T19:39:31Z
Indexed on
2010/06/02
19:44 UTC
Read the original article
Hit count: 187
jQuery
I have datepicker code is this..
$("input[id^='exc-flwup-']").datepicker({
duration: 0,
constrainInput: true,
showTime: true,
stepMinutes: 30,
stepHours: 1,
altTimeField: '',
time24h: true,
minDate: 0
});
Input field is
<label for="FollowupDate">
Follow-up:
<input type="text" id="exc-flwup-<%=Model.ExceptionID %>" name="exc-flwup-<%=Model.ExceptionID %>" value="<%=Model.FollowupDate %>" />
</label>
First click on input box I am getting popup window I can select the date.. but when I am trying to clear the date from Inputbox.. when I click on the input box again is tehre any way that we canclose the popupwindow?
thanks
© Stack Overflow or respective owner