2

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)

ilMattion
  • 1,841
  • 2
  • 24
  • 47
  • It should have a LostFocus eventhandler attached to it handling that, has the original control been modified at all I assume? – Chris W. Apr 12 '13 at 16:15

1 Answers1

2
<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................

Daniel
  • 10,864
  • 22
  • 84
  • 115
Chetan Sanghani
  • 2,058
  • 2
  • 21
  • 36