Since adding an OnSelect to my Datepicker, the TextChanged event no longer fires for this control. My code is as follows:
$(function() {
$("#<%=txtStartDate.ClientID %>").datepicker({
minDate: 0,
dateFormat: 'dd-M-yy',
onSelect: function(dateText, inst) {
var theDate = new Date(Date.parse($(this).datepicker('getDate')));
$("#<%=txtEndDate.ClientID %>").datepicker('option', 'minDate', theDate);
}
});
$("#<%=txtEndDate.ClientID %>").datepicker({
dateFormat: 'dd-M-yy'
});
});
<%-- etc ---- %>
<asp:TextBox ID="txtStartDate" runat="server" AutoPostBack="true" OnTextChanged="txtStartDate_TextChanged"></asp:TextBox>
My other datepicker (txtEndDate) TextChanged event does fire so can only put it down to the OnSelect being defined for the txtStartDate control.
Greatly appreciate any help on this one. Cheers!
In a similar vein, I found that if you attach the DatePicker to a text input field, and specify
.selectMultiple
, then weird behavior occurs. Specifically, when you click on an already selected cell (in order to unselect it), it flickers but stays selected. This occurs because first the cell does go unselected, but then DatePicker throws a 'change' event. The change event turns the current cell back on because the calendar is attached to a text input!This makes sense, in a way: you probably shouldn't stick multiple selections into a single text box. But the behavior is undocumented and rather hard to trace unless you already know how DatePicker understands text boxes.