<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="all"></telerik:RadFormDecorator>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"></telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" ClientEvents-OnRequestStart="OnRequestStart" ClientEvents-OnResponseEnd="OnResponseEnd">
function OnRequestStart(sender, arguments) {
var currentLoadingPanel = window['<%=RadAjaxLoadingPanel1.ClientID %>'];
currentLoadingPanel.show(
'<%=PageForm.ClientID %>');
}
function OnResponseEnd(sender, arguments) {
var currentLoadingPanel = window['<%=RadAjaxLoadingPanel1.ClientID %>'];
currentLoadingPanel.hide(
'<%=PageForm.ClientID %>');
}

I used this method to coloured the Appoinments
If Trim(e.Appointment.RecurrenceParentID) = "E" Then
For i = 0 To reccount - 1
If RadScheduler1.Appointments(i).Subject = e.Appointment.Subject Then
RadScheduler1.Appointments.Item(i).BackColor = Drawing.
Color.Orange
Exit For
End If
Next
End If
'Display Work Order in Differnt colour
If Trim(e.Appointment.RecurrenceParentID) = "W" Then
For i = 0 To reccount - 1
If RadScheduler1.Appointments(i).Subject = e.Appointment.Subject Then
RadScheduler1.Appointments.Item(i).BackColor = Drawing.
Color.YellowGreen
Exit For
End If
Next
I have upgraded telerik components from 2009.2.701.35 to 2010.2.826.35
and nowreferencing the javascripts for Animation on Page causes out of memory exception on tool tip show
<asp:ScriptReference
Path="~/RadResources/Scripts/Common/Animation/AnimationScripts.js" />
if i remove the reference, this doesn't happen and animation seems ok and no memory exception happens.
am i missing some other reference that might be causing this error or should i remove the reference everywhere?function showRadWindow() { window.radopen("SamplePage.aspx", "sampleWindow"); return false;}function AddHelpIcon(radWindow) { var radWindowDom = document.getElementById(radWindow.get_id()); var TitleBar = radWindow.GetTitlebar(); var parent = TitleBar.parentNode; var oUL = parent.getElementsByTagName('UL'); var oLI = oUL[0].getElementsByTagName('LI'); //Get the unordered list html element if (oLI[0].id != "HelpListItem") { //If first (list item) does not have the id of "HelpListItem" var newLI = oLI[0].cloneNode(true); var newA = newLI.getElementsByTagName('a'); //html anchor oUL[0].style.width = "93px"; //width of titlebar newA[0].className = "helpbutton"; //class inside .css file newA[0].title = "Help Button"; newA[0].lastChild.innerHTML = "Help Button"; newA[0].onmousedown = callHelpFunction; if (radWindowDom.attributes["HelpId"] != null) { newA[0].setAttribute("helpId", radWindowDom.attributes["HelpId"].value); } oUL[0].insertBefore(newLI, oLI[0]); oLI[0].id = "HelpListItem"; //Name the first (list item) ID to "HelpListItem" }}function callHelpFunction(e) { //Do something //Cancel event! if (!e) e = window.event; return $telerik.cancelRawEvent(e); }<asp:Button Id="button1" runat="server" Text="Open Rad Window2" OnClientClick="showRadWindow(); return false;" /><telerik:RadWindowManager id="radWindowManager" runat="server"> <windows> <telerik:RadWindow id="notesWindow" Runat="server" Behaviors="Close, Move, Resize, Maximize" ReloadOnShow="true" VisibleStatusbar="true" ShowContentDuringLoad="false" Width="440px" Height="440px" Left="250px" Modal="true" EnableEmbeddedSkins="false" Skin="mySkin" EnableEmbeddedBasestylesheet="false" OnClientShow="AddHelpIcon"> </telerik:RadWindow> </windows> </telerik:RadWindowManager>