HI,
I have got a strange behaviour in rad editor.The content disappears if i click on the font dropdown. No matter what ever font size I select, the dropdown's selected text is coming as 16px. Is this machine dependent. coz in some machines i couldn't see this behabiour.
This is the code i have used
<telerik:RadEditor ToolsFile="~/XML/MainTools.xml" Width="680px" Height="370px"
runat="server" ID="Contenteditor">
<ImageManager ViewPaths="~/Files" UploadPaths="~/Files" DeletePaths="~/Files" />
</telerik:RadEditor>
~/XML/MainTools.xml
<root>
<tools name="Formatting" enabled="true" dockable="true">
<tool name="Bold" />
<tool name="Italic" />
<tool name="Underline" />
<tool separator="true"/>
<tool name="JustifyLeft"/>
<tool name="JustifyCenter"/>
<tool name="JustifyRight"/>
<tool name="JustifyFull"/>
<tool separator="true"/>
<tool name="ForeColor" />
<tool name="BackColor"/>
<tool separator="true"/>
<tool name="LinkManager"/>
<tool name="Unlink"/>
<tool separator="true"/>
<tool name="InsertOrderedList"/>
<tool name="InsertUnorderedList"/>
<tool name="Outdent"/>
<tool name="Indent"/>
<tool separator="true"/>
<tool name="FontName"/>
<tool name="RealFontSize"/>
</tools>
<realFontSizes>
<item value="8px"></item>
<item value="9px"></item>
<item value="10px"></item>
<item value="11px"></item>
<item value="12px"></item>
<item value="13px"></item>
<item value="14px"></item>
<item value="16px"></item>
<item value="18px"></item>
<item value="20px"></item>
<item value="22px"></item>
<item value="24px"></item>
<item value="26px"></item>
<item value="28px"></item>
<item value="32px"></item>
<item value="36px"></item>
<item value="48px"></item>
</realFontSizes>
<tools name="MainToolbar" dockable="true" enabled="true">
<tool name="Print"/>
<tool name="AjaxSpellCheck"/>
<tool name="FindAndReplace" />
<tool separator="true"/>
<tool name="Undo" />
<tool name="Redo" />
<tool separator="true"/>
<tool name="Cut" />
<tool name="Copy" />
<tool name="Paste" shortcut="CTRL+!"/>
<tool separator="true"/>
<tool name="ImageManager"/>
<tool name="InsertTable"/>
<tool separator="true"/>
<tool name="Superscript" />
<tool name="Subscript" />
<tool name="InsertParagraph" />
<tool name="InsertGroupbox" />
<tool name="InsertHorizontalRule" />
<tool name="InsertDate" />
<tool name="InsertTime" />
</tools>
<fontNames>
<item name="Arial" />
<item name="Arial Black" />
<item name="Arial Narrow" />
<item name="Calibri" />
<item name="constantia" />
<item name="Courier" />
<item name="Courier New" />
<item name="Tahoma" />
<item name="Times New Roman" />
<item name="Times New Roman Baltic" />
<item name="Verdana" />
</fontNames>
</root>