Reputation: 1981
Hi I use the element (similar datepicker). When I change the date using the specific button the event SelectedDateChanged is raised. (correct) When I change the date writing directly in textbox the event SelectedDateChanged is not raised. (incorrect)
Do you know this problem? and Do you know the solution?
Thanks (sorry my bad english)
Upvotes: 2
Views: 2942
Reputation: 2111
<telerik:RadDatePicker ID="RadDtpTrnDate"
runat="server"
Calendar-EnableShadows="true"
Enabled="false"
Culture="en-IN"
DateInput-DateFormat="dd-MMM-yyyy"
DateInput-EmptyMessage="DD-MMM-YYYY"
DateInput-AutoPostBack="true"
ShowPopupOnFocus="true"
ToolTip="Input Date"
AutoPostBack="true"
OnSelectedDateChanged="RadDtpTrnDate_SelectedDateChanged">
</telerik:RadDatePicker>
Try this................
Upvotes: 2