Hi
i already submitted many request for this ajax method is not working,
breakpoint is not going into the method which is given below
inistialized
i tested both initialized but not working
regards
imtiyaz
i already submitted many request for this ajax method is not working,
breakpoint is not going into the method which is given below
protected
void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
// RadScheduler1.ShowInlineInsertForm(ParseJavaScriptTime(e.Argument).AddHours(8));
RadScheduler1.SelectedView =
SchedulerViewType.DayView;
RadScheduler1.SelectedDate = ParseJavaScriptTime(e.Argument);
}
private DateTime ParseJavaScriptTime(string jsTime)
{
DateTime result = DateTime.ParseExact(jsTime, "yyyyMMddHHmm", null, DateTimeStyles.AssumeUniversal);
return result.ToUniversalTime();
}
inistialized
this.RadAjaxManager1.AjaxRequest += new RadAjaxManager.AjaxRequestDelegate(RadAjaxManager1_AjaxRequest);
this.RadAjaxManager1.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(RadAjaxManager1_AjaxRequest);
i tested both initialized but not working
regards
imtiyaz