RadGrid1.MasterTableView.Columns(1).HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(500)
RadGrid1.MasterTableView.Columns(2).HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(500)
RadGrid1.MasterTableView.Columns(3).HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(500)
RadGrid1.MasterTableView.Columns(4).HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(500)
background
: url(/Images/signUp_bg.png) no-repeat;
and the editor rewrites to
background
: url(/images/signup_bg.png) no-repeat;
Lower caps.
The problem is that the company decided to host pour asp.net site on linux servers ruuning virtual windows servers, and the caps are important cause the hosted pages cannot find the images, is there a way to prevent caps formatting for the styles in the rad editor
thanks



I have implemented CoverFlowMode using Radrotator, as there are huge records I am implemeting paging manually using RadAjaxManager Ajax Request on button click.
But the RadRotator is not getting updated with next records using RadAjaxManager. How can I update Radrotator CoverFlowMode with RadAjaxManager.
Below is the code
aspx file code
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
function ClientClicked() {
$find(
<%= rmStudentList.ClientID %>").ajaxRequest("NEXT");
return false;
}
</script>
</telerik:RadCodeBlock >
<div class="mainDiv">
<asp:Panel ID="RotatorWrapper" runat="server" CssClass="rotWrapper">
<telerik:RadRotator ID="RadRotator1" runat="server" Width="748px" ItemWidth="150"
ScrollDirection="Left, Right" Height="233px" ItemHeight="113" ScrollDuration="500"
FrameDuration="2000" PauseOnMouseOver="false" RotatorType="CoverFlow" InitialItemIndex="4"
OnClientItemShown="OnClientItemShown" OnClientItemClicked="OnClientItemClicked"
CssClass="RemoveRotatorBorder">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# GetImagePath(Eval("ImagePath")) %>'
AlternateText='<%# Eval("LastName") %>' />
</ItemTemplate>
</telerik:RadRotator>
<input id="Button1" type="button" runat="server" value="Next" onclick="ClientClicked(); return false;" />
</asp:Panel>
</div>
cs file
protected void rmStudentList_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
ConfigureRadRotator(RotatorType.CoverFlowButtons);
}