Hi
I am getting following error during load time after added the loading panel into the grid.
"Microsoft JScript runtime error: 'Sys.WebForms.PageRequestManager' is null or not an object".
And interrups the running of the program..
ASPX code is:
I could not find out where i made mistake..so help me find out the issue
--Thanks
I am getting following error during load time after added the loading panel into the grid.
"Microsoft JScript runtime error: 'Sys.WebForms.PageRequestManager' is null or not an object".
And interrups the running of the program..
ASPX code is:
<telerik:RadAjaxManager ID="radAjaxManager" runat="server" ClientEvents-OnRequestStart="requestStart" |
OnAjaxSettingCreating="radAjaxManager_AjaxSettingCreating"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="RadGrid1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="ajaxLoadingPanel" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
<ClientEvents OnRequestStart="requestStart" /> |
</telerik:RadAjaxManager> |
<telerik:RadAjaxLoadingPanel ID="ajaxLoadingPanel" runat="server" Height="75px" |
Width="75px" HorizontalAlign="Left" BackgroundPosition="BottomLeft" Direction="LeftToRight"> |
<div style="position: absolute; left: 500px; top: 200px"> |
<img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' |
style="border: 0px;" /> |
</div> |
</telerik:RadAjaxLoadingPanel> |
I could not find out where i made mistake..so help me find out the issue
--Thanks