Dear Support Team:
We had discussed the issue with our Developer team and the CtrlS Datacenters team. The issue is still not yet resolved from past 8 months.
Please find the Server Configurations below:
Test Server Configuration: (located with our Developer)
Processor -- AMD X2 Processor Dual core
Memory (RAM) -- 2.00 GB
Operating System -- Windows Server 2008 Standard R2 64 Bit
LIVE Server Configuration: (at Ctrl-S Datacenter)
Processor -- Intel(R) Xeon(R) CPU @ 2.80 or Higher
Memory (RAM) -- 6.00 GB
Operating System -- Windows Server 2008 Standard 32 Bit SP2
Please share your comments which help us in fixing the problem.
Thanks,
L. Nagaraj
This is how I open the first window:
<div class="filterDiv">
<telerik:RadButton ID="uxShowAdvancedSearch" runat="server" Text="Advanced Search" Skin="Sunset">
<Icon PrimaryIconCssClass="rbSearch" PrimaryIconLeft="4" PrimaryIconTop="4"></Icon>
</telerik:RadButton>
<telerik:RadWindow runat="server" Animation="Resize" Behaviors="Close,Move" ClientIDMode="Inherit" ID="uxSearchPopup" RestrictionZoneID="ContentTemplateZone"
Modal="true" CenterIfModal="true" Title="Advanced Search" Width="600px" Left="100" Top="100">
<ContentTemplate>
<sc:AdvancedSearch runat="server" id="uxAdvancedSearch" />
<div>
<telerik:RadButton ID="uxSearch" Text="Search" Skin="Sunset" runat="server" OnClick="uxSearch_Click"></telerik:RadButton>
</div>
</ContentTemplate>
</telerik:RadWindow>
<%---Javascript related to the RadWindow above---%>
<div id="ContentTemplateZone">
<telerik:RadScriptBlock runat="server" ID="RadScriptBlockAdvancedSearchPopup">
<script type="text/javascript">
function openWinContentTemplate()
{
$find("<%=uxSearchPopup.ClientID %>").show();
}
</script>
</telerik:RadScriptBlock>
</div>
</div>
The user control AdvancedSearch has a panel to which other usercontrols of type SearchCriteria will be added dynamically. One of the SearchCriteria items will open up another radwindow on click of a button with this markup:
<asp:Panel ID="uxSponsorsPanel" runat="server" Visible="false">
<table>
<tr>
<td><asp:TextBox ID = "uxSponsor" runat="server" Text="" /></td>
<td>
<telerik:RadButton ID="uxShowSponsorSearch" runat="server" Text="" Skin="Sunset">
<Icon PrimaryIconCssClass="rbSearch"></Icon>
</telerik:RadButton>
</td>
</tr>
</table>
</asp:Panel>
<telerik:RadWindow runat="server" Animation="Resize" Behaviors="Close,Move" ClientIDMode="Inherit" ID="uxSponsorSearchPopup" RestrictionZoneID="ContentTemplateZone"
Modal="true" CenterIfModal="true" Title="Sponsor Search" Width="600px" Left="100" Top="100">
<ContentTemplate>
<sc:SponsorSearch runat="server" id="uxSponsorSearch" />
<div>
<telerik:RadButton ID="uxSearch" Text="Search" Skin="Sunset" runat="server"></telerik:RadButton>
</div>
</ContentTemplate>
</telerik:RadWindow>
<%---Javascript related to the RadWindow above---%>
<div id="ContentTemplateZone">
<telerik:RadScriptBlock runat="server" ID="RadScriptBlockAdvancedSearchPopup">
<script type="text/javascript">
function openWinContentTemplate() {
$find("<%=uxSponsorSearchPopup.ClientID %>").show();
}
</script>
</telerik:RadScriptBlock>
</div>
The SponsorSearch control has this radgrid:
<telerik:RadGrid runat="server" ID="uxSponsorList" OnNeedDataSource="uxSponsorList_NeedDataSource" AutoGenerateColumns="false" AllowPaging="true" AllowCustomPaging="true" PageSize="10"
AllowSorting="true" AllowFilteringByColumn="true" OnItemCommand="uxSponsorList_ItemCommand" Skin="Sunset" >
<MasterTableView IsFilterItemExpanded="false" EnableHeaderContextMenu="false" EnableHeaderContextAggregatesMenu="false" EnableHeaderContextFilterMenu="false" EnableLinqGrouping="false"
CommandItemDisplay="Top" CommandItemStyle-BorderWidth="0px" CommandItemStyle-BorderStyle="None" DataKeyNames="ID">
<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
<CommandItemSettings ShowAddNewRecordButton="false" ShowRefreshButton="false" />
<Columns>
<telerik:GridBoundColumn DataField="ID" HeaderText="ID" Visible="false" AllowSorting="false"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="SponsorName" HeaderText="Name" AllowSorting="true"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="SponsorType" Visible="true" HeaderText="Type" AllowSorting="true"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="SponsorAgencyClass" HeaderText="Agency Class" AllowSorting="true"></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
</telerik:RadGrid>
I want to have a select column in this grid which on clicking will pass the sponsor name of the selected row to the SearchCriteria control that called it and then close the window.

protected void Page_Load(object sender, EventArgs e){ var tableName = Request.QueryString["table"]; if (tableName != null) { if (!Page.IsPostBack) { { LayoutGrid(tableName); } } BindData(tableName); }}
private static GridColumn AppendDropDownColumn(MetaColumn columnInfo, RadGrid target)
{
var relatedColumn = columnInfo.LeftRelatedColumn.FirstOrDefault();
if (relatedColumn == null)
// Can't find relationship. Just bind as a text column.
return AppendTextColumn(columnInfo, target);
var col = new GridDropDownColumn();
target.Columns.Add(col);
col.ListTextField = relatedColumn.RightDisplayColumn.DatabaseColumnName;
col.ListValueField = relatedColumn.RightValueColumn.DatabaseColumnName;
col.DataField = columnInfo.DatabaseColumnName;
col.HeaderText = columnInfo.Alias;
// Dynamically add datasource for the item list. RAD Controls don't allow setting the datasource directly
var itemsSource = new SqlDataSource();
itemsSource.ConnectionString = ConfigurationManager.ConnectionStrings["DynamicWebDb"].ConnectionString;
itemsSource.SelectCommand = String.Format("Select {0}, {1} FROM {2} ORDER BY {0}",
col.ListTextField, col.ListValueField, relatedColumn.RightDisplayColumn.MetaEntity.EntityName);
itemsSource.ID = "Lookup" + columnInfo.ColumnId;
target.Parent.Controls.Add(itemsSource);
col.DataSourceID = itemsSource.ID;
return col;
}
This appears to be binding properly as the display value is being displayed rather than the code in view mode,
but if I shift to edit mode, the dropdown column looses it's data source values. What do I need to do differently
to re-display the dropdown list values correctly when editing. I would prefer not to have to reconfigure the
datasources on each postback.


I am attempting to implement a custom skin with the RadCalendar control but I cannot seem to get it to display correctly. I would like to customize the ‘Silk” skin for the calendar but I have run into a few hurdles before I can continue any further. Once the custom skin is implemented (EnableEmbeddedSkins="False" Skin="Silk") the Calendar has some corrupted display issues. The navigation buttons do not display correctly and the Days of Week align to the right as opposed to being centered. Interestingly the calendar works fine with embedded default skin. It does this in both Firefox and IE10. Has anyone else run into this issue and if so were you able to rectify the situation? I have modified several controls – Menu, TabStrip, ToolBar, and Grid without any problems.
Additional:
System: Windows 8.0 64
Visual Studios 2012
IIS 8.0
Web App is built in HTML5 .Net 4.0 (Default Classic in VS 2012)
RadControls for ASP.NET AJAX Q2 2013 2.7
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WhoCalendar.aspx.cs" Inherits="En4cer.eSysAdmin.Users.WhoCalendar" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title>Calendar</title> <link href="../../Skins/Calendar/Blue/Calendar.Silk.css" rel="stylesheet" /></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> <div> <telerik:RadCalendar ID="RadCalendar1" runat="server" EnableEmbeddedSkins="false" Skin="Silk" MultiViewColumns="2"></telerik:RadCalendar> </div> </form></body></html><telerik:RadGrid ID="RadGridSingleClick" runat="server" Skin="Vista" AutoGenerateColumns="true" OnNeedDataSource="RadGridSingleClick_NeedDataSource" OnPreRender="RadGridSingleClick_PreRender" OnUpdateCommand="RadGridSingleClick_UpdateCommand" OnColumnCreated="RadGridSingleClick_ColumnCreated" Height="250px" Width="1100px"> <%--OnItemDataBound="RadGridText_ItemDataBound" --%> <MasterTableView HeaderStyle-CssClass="disable-highlight" Width="95%" HeaderStyle-HorizontalAlign="Center" HeaderStyle-Wrap="true" DataKeyNames="MKTID" HeaderStyle-Width="100px" ItemStyle-Width="100px" EditMode="InPlace"> <Columns> <telerik:GridEditCommandColumn ButtonType="ImageButton" ItemStyle-Width="60px" HeaderStyle-Width="60px"> </telerik:GridEditCommandColumn> </Columns> </MasterTableView> <ClientSettings Scrolling-AllowScroll="true" Resizing-AllowColumnResize="true" Scrolling-SaveScrollPosition="true" Scrolling-FrozenColumnsCount="2" Scrolling-UseStaticHeaders="true"> <Selecting AllowRowSelect="true" /> <ClientEvents OnRowClick="RadGridSingleRowClick" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> </ClientSettings> </telerik:RadGrid>