Here is the same .Text property from SharePoint:
This line has Word curly “quotesâ€, curly ‘apostrophes’, and long—dashes.
As you can see, the values are different. I captured these values using Visual Studio 2005 debug screen.
Can you tell me how why this is different and how I should use the RadEditor to enter just plain text and handle stripping out Words special characters?
Here is the RadEditor code I am using (exactly the same in the ASP.NET page and the SharePoint page):
<telerik:RadEditor ID="radEditor_Comments" runat="server"
ContentAreaCssFile="~/Styles/vt_RadEditor_ContentArea.css"
EditModes="All"
NewLineBr="true"
StripFormattingOnPaste="MSWordRemoveAll,AllExceptNewLines"
Width="100%" >
<Modules>
<telerik:EditorModule Name="RadEditorStatistics" Enabled="false" Visible="false" />
<telerik:EditorModule Name="RadEditorDomInspector" Enabled="false" Visible="false" />
<telerik:EditorModule Name="RadEditorNodeInspector" Enabled="false" Visible="false" />
<telerik:EditorModule Name="RadEditorHtmlInspector" Enabled="false" Visible="false" />
</Modules>
<Tools>
<telerik:EditorToolGroup />
</Tools>
</telerik:RadEditor>
Thanks,
Randall Price


<
telerik:RadGrid ID="SubGrid" AllowSorting="True" Skin="Hay" runat="server" GridLines="none" Width="985px">
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="true" />
<Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="100%"/>
</ClientSettings>
<MasterTableView AutoGenerateColumns="False" DataKeyNames="VendorKey" TableLayout="auto" Width="100%" >
<Columns>
<telerik:GridHyperLinkColumn HeaderText="Subcontractor" DataTextField="VendorName" ItemStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="VendorType" HeaderText="Trade 1" ItemStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="VendorType2" HeaderText="Trade 2" ItemStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="VendorType3" HeaderText="Trade 3" ItemStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="MainPhone" HeaderText="Main Phone" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="ContactName" HeaderText="Contact Name" ItemStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="ContactPhone" HeaderText="Contact Phone" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="ContactCell" HeaderText="Contact Cell" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="ShowToCustomer" HeaderText="Show Cust?" ItemStyle-HorizontalAlign="center" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="GeneralLiabilityExpiration" HeaderText="GL Expiration" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="AutoInsuranceExpiration" HeaderText="Auto Expiration" ItemStyle-Wrap="false" HeaderStyle-Wrap="false"/>
<telerik:GridBoundColumn DataField="Status" HeaderText="Status"/>
<telerik:GridTemplateColumn UniqueName="SubNotes" HeaderText="Notes" ItemStyle-HorizontalAlign="center">
<ItemTemplate>
<asp:Image TabIndex="-1" id="imgNotes" AlternateText="Notes" imageUrl="../images/notes.gif" runat="server" />
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
I wish to use the Q3 release as I understand that it contains some enhancements for validation in the scheduler control. I also wish to fix the size of the scheduler control like in the example as I plan to display the control in the a modal dialog.
Thanks,
Ross
PS; My browser is IE7.