<%@ ServiceHost Language="C#" Debug="true" Service="CustomPlannerService, $SharePoint.Project.AssemblyFullName$" Factory="Microsoft.SharePoint.Client.Services.MultipleBaseAddressWebServiceHostFactory, Microsoft.SharePoint.Client.ServerRuntime, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>protected void RadScheduler1_ResourcesPopulating(object sender, ResourcesPopulatingEventArgs e)
{HttpCookie cookie = FormsAuthentication.GetAuthCookie(User.Identity.Name, false);string cookieHeader = string.Format("{0}={1}", cookie.Name, cookie.Value);e.Headers.Add(HttpRequestHeader.Cookie, cookieHeader);<?xml version="1.0" encoding="utf-8" ?><configuration> <system.web> <customErrors mode="Off"/> </system.web> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="5000000"/> </webServices> </scripting> </system.web.extensions> <system.serviceModel> <services> <service name="CustomPlannerService"> <endpoint address="" behaviorConfiguration="CustomPlannerServiceBehavior" binding="webHttpBinding" contract="CustomPlannerService"/> </service> </services> <behaviors> <endpointBehaviors> <behavior name="CustomPlannerServiceBehavior"> <enableWebScript/> </behavior> </endpointBehaviors> <serviceBehaviors> <behavior name=""> <serviceMetadata httpGetEnabled="true"/> <serviceDebug includeExceptionDetailInFaults="false"/> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> </configuration>

Hi Team,
I updated latest telerik version 2013.3.1114.45
In latest telerik Dll ,array of RadCombobox assingment at client site code is occurring from bottom to top.
As per given below:
var ddlPublishType = Telerik.Web.UI.RadComboBox.ComboBoxes[4];
var ddlPublishEventOnStatus = Telerik.Web.UI.RadComboBox.ComboBoxes[3];
var ddlPublishEventOnCycle = Telerik.Web.UI.RadComboBox.ComboBoxes[2];
var ddlPublishEventOnDynamic = Telerik.Web.UI.RadComboBox.ComboBoxes[1];
But In old telerik version 2009.3.1208.35 , array of RadCombobox assingment was occurring from top to bottom.
As per given below:
var ddlPublishEventOnStatus = Telerik.Web.UI.RadComboBox.ComboBoxes[2];
var ddlPublishEventOnCycle = Telerik.Web.UI.RadComboBox.ComboBoxes[3];
var ddlPublishEventOnDynamic = Telerik.Web.UI.RadComboBox.ComboBoxes[4];
