I'm having a very odd problem with the RadEditor Toolbar and the ForeColor tool. First some background: We are using a DockingZone to place the tool bar in a separate pane from the content window.
The last item in the toolbar (.reGrip .grip_last) is being forced onto a new line. The interesting part about this is if I remove the ForeColor tool from the toolsfile, the issue corrects itself. I've tried removing every other tool, as well as adding tools and the problem only exists when the ForeColor tool is present:
Here's some code although, I'm not sure how much it'll help:
Toolsfile:
HTML:
Attached aer 4 images, the first with ForeColoe enabled, 2nd with it disabled, 3rd with only forecolor, and 4th without forecolor, but with additional tools.
The last item in the toolbar (.reGrip .grip_last) is being forced onto a new line. The interesting part about this is if I remove the ForeColor tool from the toolsfile, the issue corrects itself. I've tried removing every other tool, as well as adding tools and the problem only exists when the ForeColor tool is present:
Here's some code although, I'm not sure how much it'll help:
Toolsfile:
<root> <tools name="MainToolbar" dockingzone="editorToolbar" isribbon="false" dockable="true"> <tool name="Bold"/> <tool name="Italic"/> <tool name="Underline"/> <tool name="StrikeThrough"/> <tool name="FontName"/> <tool name="ForeColor"/> <tool separator="true"/> <tool name="JustifyLeft"/> <tool name="JustifyCenter"/> <tool name="JustifyRight"/> <tool name="JustifyFull"/> <tool name="JustifyNone"/> <tool separator="true"/> <tool name="Superscript"/> <tool name="Subscript"/> <tool separator="true"/> <tool name="ConvertToLower" /> <tool name="ConvertToUpper" /> <tool name="Indent" /> <tool name="Outdent" /> <tool name="InsertOrderedList" /> <tool name="InsertUnorderedList" /> </tools> </root>HTML:
<PageSubTitleTemplate> <div id="editorToolbarWrapper" runat="server" class="editorToolbarWrapper"> <div id="editorToolbar"></div> </div> </PageSubTitleTemplate> <PageContentTemplate> <telerik:RadEditor ID="m_UIEmailEditor" runat="server" SkinID="EmailEditor" OnClientLoad="OnClientLoad" > </telerik:RadEditor> <telerik:RadEditor ID="m_UIEmailEditor" runat="server" SkinID="EmailEditor" OnClientLoad="OnClientLoad" > </telerik:RadEditor> </PageContentTemplate> Attached aer 4 images, the first with ForeColoe enabled, 2nd with it disabled, 3rd with only forecolor, and 4th without forecolor, but with additional tools.