Hello,
The date selected into the RadDatePicker in format of 11/05/2012 and after getting the output which was coded in RadDatePicker1_SelectedDateChanged,the displayed date changes to 2012-05-11-00-00-00 and then goes back to11/05/2012. This causes a flicker issue in the field.Could I get Solution for this to overcome the flickering effect?
I reffered the below link related to this issue but couldn't find the solution.
http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/raddatepicker-format-switiching-on-button-click.aspx
My Code is as below:
The date selected into the RadDatePicker in format of 11/05/2012 and after getting the output which was coded in RadDatePicker1_SelectedDateChanged,the displayed date changes to 2012-05-11-00-00-00 and then goes back to11/05/2012. This causes a flicker issue in the field.Could I get Solution for this to overcome the flickering effect?
I reffered the below link related to this issue but couldn't find the solution.
http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/raddatepicker-format-switiching-on-button-click.aspx
My Code is as below:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server" AutoPostBack="true" OnSelectedDateChanged="RadDatePicker1_SelectedDateChanged" ShowPopupOnFocus="true"> </telerik:RadDatePicker>
protected void RadDatePicker1_SelectedDateChanged(object sender, Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs e)
{
GetApptData();
lblPSelectedDate.Text = RadDatePicker1.SelectedDate.Value.ToShortDateString();
}