This question is locked. New answers and comments are not allowed.
I'm on WSS3 and RadEditor 4.5.6, I extended my web application to the Internet zone, when i tried to edit a list item the editor toolbar didn't get loaded for either the Internet zone or default zone, no toolbar showed up when editing a list item, but the toolbar for web part works fine. The "Use radeditor to edit list items" feature is activated, i tried deactivate and reactivate, even tried retract/deploy solution, nothing helped.
This is my listconfigfile.xml
<?xml version="1.0" encoding="utf-8" ?>
- <!--
==============================================================================================
Config File valid structure:
<configuration>
<property>...</property>
...
<property>
<item>...</item>
<item>...</item>
...
</property>
...
</configuration>
===============================================================================================
-->
- <configuration>
<property name="ConvertToXhtml">true</property>
<property name="EnableDocking">False</property>
<property name="ShowPreviewMode">False</property>
<property name="StripAbsoluteAnchorPaths">False</property>
<property name="StripAbsoluteImagesPaths">False</property>
<property name="Height">240px</property>
<property name="Width">500px</property>
<property name="Skin">Default2006</property>
</configuration>
and listtoolfile.xml, i didn't change much.
- <root>
- <tools name="EnhancedToolbar" dockable="false" enabled="true">
<tool name="Cut" shortcut="CTRL+X" />
<tool name="Copy" shortcut="CTRL+C" />
<tool name="Paste" shortcut="CTRL+V" />
<tool name="FormatStripper" />
<tool separator="true" />
<tool name="Undo" shortcut="CTRL+Z" />
<tool name="Redo" shortcut="CTRL+Y" />
<tool separator="true" />
<tool name="MOSSInsertTable" />
- <tool name="MOSSInsertTableElement" dropDownWidth="180">
<tool name="InsertRowAbove" />
<tool name="InsertRowBelow" />
<tool name="InsertColumnLeft" />
<tool name="InsertColumnRight" />
</tool>
- <tool name="MOSSDeleteTableElement">
<tool name="DeleteRow" />
<tool name="DeleteColumn" />
</tool>
<tool name="SplitCell" />
<tool name="MergeColumns" />
<tool separator="true" />
<tool name="LinkManager" />
<tool name="ImageManager" />
</tools>
- <tools name="BasicToolbar" dockable="false" enabled="true">
<tool name="FontName" />
<tool name="RealFontSize" />
<tool separator="true" />
<tool name="Bold" shortcut="CTRL+B" />
<tool name="Italic" shortcut="CTRL+I" />
<tool name="Underline" shortcut="CTRL+U" />
<tool separator="true" />
<tool name="JustifyLeft" shortcut="CTRL+L" />
<tool name="JustifyCenter" shortcut="CTRL+E" />
<tool name="JustifyRight" shortcut="CTRL+R" />
<tool separator="true" />
<tool name="InsertOrderedList" />
<tool name="InsertUnorderedList" />
<tool name="Indent" />
<tool name="Outdent" shortcut="CTRL+M" />
<tool separator="true" />
<tool name="ForeColor" />
<tool name="BackColor" />
<tool separator="true" />
<tool name="MOSSLeftToRight" />
<tool name="MOSSRightToLeft" />
</tools>
- <contextMenus>
- <contextMenu forElement="*">
<tool name="Cut" />
<tool name="Copy" />
<tool name="Paste" />
</contextMenu>
</contextMenus>
</root>
Any suggestion is appreciated.
This is my listconfigfile.xml
<?xml version="1.0" encoding="utf-8" ?>
- <!--
==============================================================================================
Config File valid structure:
<configuration>
<property>...</property>
...
<property>
<item>...</item>
<item>...</item>
...
</property>
...
</configuration>
===============================================================================================
-->
- <configuration>
<property name="ConvertToXhtml">true</property>
<property name="EnableDocking">False</property>
<property name="ShowPreviewMode">False</property>
<property name="StripAbsoluteAnchorPaths">False</property>
<property name="StripAbsoluteImagesPaths">False</property>
<property name="Height">240px</property>
<property name="Width">500px</property>
<property name="Skin">Default2006</property>
</configuration>
and listtoolfile.xml, i didn't change much.
- <root>
- <tools name="EnhancedToolbar" dockable="false" enabled="true">
<tool name="Cut" shortcut="CTRL+X" />
<tool name="Copy" shortcut="CTRL+C" />
<tool name="Paste" shortcut="CTRL+V" />
<tool name="FormatStripper" />
<tool separator="true" />
<tool name="Undo" shortcut="CTRL+Z" />
<tool name="Redo" shortcut="CTRL+Y" />
<tool separator="true" />
<tool name="MOSSInsertTable" />
- <tool name="MOSSInsertTableElement" dropDownWidth="180">
<tool name="InsertRowAbove" />
<tool name="InsertRowBelow" />
<tool name="InsertColumnLeft" />
<tool name="InsertColumnRight" />
</tool>
- <tool name="MOSSDeleteTableElement">
<tool name="DeleteRow" />
<tool name="DeleteColumn" />
</tool>
<tool name="SplitCell" />
<tool name="MergeColumns" />
<tool separator="true" />
<tool name="LinkManager" />
<tool name="ImageManager" />
</tools>
- <tools name="BasicToolbar" dockable="false" enabled="true">
<tool name="FontName" />
<tool name="RealFontSize" />
<tool separator="true" />
<tool name="Bold" shortcut="CTRL+B" />
<tool name="Italic" shortcut="CTRL+I" />
<tool name="Underline" shortcut="CTRL+U" />
<tool separator="true" />
<tool name="JustifyLeft" shortcut="CTRL+L" />
<tool name="JustifyCenter" shortcut="CTRL+E" />
<tool name="JustifyRight" shortcut="CTRL+R" />
<tool separator="true" />
<tool name="InsertOrderedList" />
<tool name="InsertUnorderedList" />
<tool name="Indent" />
<tool name="Outdent" shortcut="CTRL+M" />
<tool separator="true" />
<tool name="ForeColor" />
<tool name="BackColor" />
<tool separator="true" />
<tool name="MOSSLeftToRight" />
<tool name="MOSSRightToLeft" />
</tools>
- <contextMenus>
- <contextMenu forElement="*">
<tool name="Cut" />
<tool name="Copy" />
<tool name="Paste" />
</contextMenu>
</contextMenus>
</root>
Any suggestion is appreciated.