I have a RadTimePicker as one of the template columns in RadGrid. When i call the OnSelectedDateChanged event of the RadTimePicker it is not fired. I have set AutoPostBack also to true. But its not fired.
I have added the event handler to the control's declaration. Still it doesn't work. The control is inside the grid. So is there any other way to handle this?
My code:
<EditItemTemplate >
<telerik:RadTimePicker ID="txtStartTime" runat="server" OnSelectedDateChanged ="CheckDuration" AutoPostBack ="true" >
</telerik:RadTimePicker>
</EditItemTemplate>
Protected Sub CheckDuration(ByVal sender As Object, ByVal e As Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs)
End Sub