or


Hello,
We currently have Rad editor installed on our instance of MOSS 2007, publishing protal to allow users to update content on web pages, this works fine but the editor doesn't seem to be WISYWIG, it doesn't seem to be using the CSS files associated with our website, but when the page is redered in normal website viewing mode - the styles are picked up fine.
Is there a way to configure the Rad Editor within Sharepoint to pick up the CSS file(s) being used on the website?
We are currently using the following code within our Master Pages / Page layouts:
<%@ Register TagPrefix="telerik" Namespace="Telerik.SharePoint.FieldEditor" Assembly="RadEditorSharePoint, Version=5.3.2.0, culture=neutral, PublicKeyToken=1f131a624888eeed" %>
<telerik:RadHtmlField id="Content" DisplayWidth="1000px" FieldName="PublishingPageContent" runat="server" AllowSpecialTags="true"></telerik:RadHtmlField>
GridTemplateColumn in my RadGrid That Regular filtering on them has error and it seems we should change them! GridTemplateColumns are like below : <telerik:GridTemplateColumn FilterControlAltText="Filter Online column" HeaderText="Online" UniqueName="Online"> <ItemTemplate> <asp:CheckBox ID="chkOnline" runat="server" Checked='<%# CheckForOnline(Eval("ID")) %>' Enabled="False" /> </ItemTemplate> <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" /> <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="100px" /></telerik:GridTemplateColumn><telerik:GridTemplateColumn FilterControlAltText="Filter FileSize column" HeaderText="FileSize" UniqueName="FileSize" Visible="False"> <ItemTemplate> <asp:Label ID="lblFileSize" runat="server" Text='<%# Eval("FileSize") %>'></asp:Label> </ItemTemplate> <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" /> <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" /></telerik:GridTemplateColumn><telerik:GridTemplateColumn FilterControlAltText="Filter FileSizeChange column" HeaderText="FileSize" UniqueName="FileSizeChange"> <ItemTemplate> <asp:Label ID="lblFileSizeChange" runat="server" Text='<%# ChangeFileSize(Eval("FileSize")) %>'></asp:Label> </ItemTemplate> <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" /> <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" /></telerik:GridTemplateColumn>FileSize TemplateColumn is disable and i am using FileSizeChange instead!