or

[NullReferenceException: Object reference not set to an instance of an object.] Telerik.Web.UI.ControlItem.LoadFromDictionary(IDictionary`2 dictionary) +165 Telerik.Web.UI.NavigationItem.LoadFromDictionary(IDictionary`2 dictionary) +31 Telerik.Web.UI.RadTreeNode.LoadFromDictionary(IDictionary`2 dictionary) +32 Telerik.Web.UI.ClientStateLogPlayer.Insert(ClientStateLogEntry entry) +179 Telerik.Web.UI.ClientStateLogPlayer.Play(ClientStateLogEntry entry) +65 Telerik.Web.UI.ClientStateLogPlayer.Play(IEnumerable`1 clientStateLogEntry) +94 Telerik.Web.UI.RadTreeView.LoadLogEntries(TreeViewClientState clientState) +78 Telerik.Web.UI.RadTreeView.LoadClientState(TreeViewClientState clientState) +47 Telerik.Web.UI.RadTreeView.LoadPostData(String postDataKey, NameValueCollection postCollection) +141 Telerik.Web.UI.RadDataBoundControl.System.Web.UI.IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) +36 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) +661 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1194
var _4=this._owner.get_resources().getResourcesByType(_3);
After that if I click any of the calendar dates I get the following error:
Line: 380
Error: 'null' is null or not an object.
This occurs on the following line (within my aspx page, obviously included the javascript from your resources):
var onclick = $find("ctl00_panelFadeOut").get_OnClickBehavior().get_animation();
Please can you help to point me in the right direction, so I can resolve this issue as quickly as possible.
Thank you.
| function getWindows() |
| { |
| $find("<%=RMILSWeb.ClientID%>").disable(); |
| //return MainRadWindow; |
| return $find("<%=RadWindow1.ClientID%>"); |
| } |
| function btnReserve_Click() |
| { |
| getWindows().setUrl('DialogBox_Telerik/SelectPatronForReserve.aspx'); |
| getWindows().set_modal(true); |
| getWindows().setSize(300,120); |
| getWindows().setActive(); |
| getWindows().set_behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Close ); |
| getWindows().show(); |
| } |