This is a migrated thread and some comments may be shown as answers.

[Solved] modules not showing up

1 Answer 144 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Brian Garson
Top achievements
Rank 2
Brian Garson asked on 14 Oct 2009, 03:50 PM
For some reason my first editor on my page will not show modules no matter what I've tried.. does anyone have any idea why this is occuring?

  <telerik:RadTabStrip ID="radtabstrip1" runat="server" Skin="Web20" MultiPageID="RadMultiPage1"
                    <tabs> 
                        <telerik:RadTab Text="HTML"
                        </telerik:RadTab> 
                        <telerik:RadTab Text="TEXT"
                        </telerik:RadTab> 
                    </tabs> 
                </telerik:RadTabStrip> 
                <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0"
                    <telerik:RadPageView ID="RadPageView1" runat="server" Visible="true"
                        <telerik:RadEditor ID="HTMLEditor" OnClientLoad="OnClientLoad" EditModes="All"  
                            SkinID="BasicSetOfTools" Width="650" Height="460px" runat="server" Skin="Web20" 
                            ExternalDialogsPath="~/EditorDialogs/" EnableResize="false" > 
                            <modules> 
                                <telerik:EditorModule Name="RadEditorStatistics" Enabled="true" Visible="true" /> 
                                <telerik:EditorModule Name="RadEditorNodeInspector" Enabled="true" Visible="true" /> 
                                <telerik:EditorModule Name="RadEditorDomInspector" Enabled="true" Visible="true" /> 
                            </modules> 
                            <contextmenus> 
                                <telerik:EditorContextMenu TagName="A" Enabled="true"
                                    <telerik:EditorTool Name="Unlink" /> 
                                    <telerik:EditorTool Name="LinkManager" /> 
                                </telerik:EditorContextMenu> 
                                <telerik:EditorContextMenu TagName="*" Enabled="true"
                                    <telerik:EditorTool Name="PasteFromWordNoFontsNoSizes" /> 
                                    <telerik:EditorDropDown Name="PasteFromWord" /> 
                                    <telerik:EditorDropDown Name="PastePlainText" /> 
                                    <telerik:EditorDropDown Name="LinkManager" /> 
                                </telerik:EditorContextMenu> 
                                <telerik:EditorContextMenu TagName="IMG"
                                    <telerik:EditorTool Name="Cut" /> 
                                    <telerik:EditorTool Name="Copy" /> 
                                    <telerik:EditorTool Name="Paste" /> 
                                </telerik:EditorContextMenu> 
                            </contextmenus> 
                            <tools> 
                                <telerik:EditorToolGroup> 
                                    <telerik:EditorTool Name="SaveDesign" Text="Save" ShowText="true" ShowIcon="false" /> 
                                    <telerik:EditorTool name="ClearHTML" ShowText="true" ShowIcon="false" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="AjaxSpellCheck" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="FindAndReplace" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Cut" /> 
                                    <telerik:EditorTool Name="Copy" /> 
                                    <telerik:EditorTool Name="Paste" /> 
                                    <telerik:EditorTool Name="PasteFromWordNoFontsNoSizes" /> 
                                    <telerik:EditorTool Name="FormatStripper" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="InsertHorizontalRule" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="Undo" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Redo" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="LinkManager" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Unlink" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="InsertTable" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="ToggleScreenMode" Text="Full Screen" /> 
                                </telerik:EditorToolGroup> 
                                <telerik:EditorToolGroup> 
                                    <telerik:EditorTool Name="FormatBlock" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="FontName" Text="Font" /> 
                                    <telerik:EditorTool Name="FontSize" Text="Size" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="JustifyLeft" Text="Left" /> 
                                    <telerik:EditorTool Name="JustifyCenter" Text="Center" /> 
                                    <telerik:EditorTool Name="JustifyRight" Text="Right" /> 
                                    <telerik:EditorTool Name="JustifyFull" Text="Both" /> 
                                    <telerik:EditorTool Name="JustifyNone" Text="None" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="ForeColor" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="BackColor" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Bold" /> 
                                    <telerik:EditorTool Name="Italic" Text="Italic" /> 
                                    <telerik:EditorTool Name="Underline" Text="Underline" ShowIcon="true" /> 
                                </telerik:EditorToolGroup> 
                            </tools> 
                            <content></content
                             
                        </telerik:RadEditor> 
                    </telerik:RadPageView> 
                    <telerik:RadPageView ID="RadPageView2" runat="server" Visible="true"
                        <telerik:RadEditor ID="textEditor" OnClientLoad="OnClientLoadTextEditor" SkinID="BasicSetOfTools" 
                            Width="650px" Height="460px" runat="server" Skin="Web20" ExternalDialogsPath="~/EditorDialogs/" 
                            OnClientCommandExecuting="OnClientCommandExecuting" EditModes="Design" StripFormattingOptions="AllExceptNewLines" 
                            StripFormattingOnPaste="AllExceptNewLines" EnableResize="false"
                            <modules> 
                                <telerik:EditorModule Name="RadEditorStatistics" Enabled="true" Visible="true" /> 
                                <telerik:EditorModule Name="RadEditorNodeInspector" Enabled="true" Visible="true"/> 
                                <telerik:EditorModule Name="RadEditorDomInspector" Enabled="true" Visible="true" /> 
                            </modules> 
                            <tools> 
                                <telerik:EditorToolGroup> 
                                    <telerik:EditorTool Name="SaveDesignFromText" ShowText="true" ShowIcon="false" /> 
                                    <telerik:EditorTool name="ClearText" ShowText="true" ShowIcon="false" /> 
                                    <telerik:EditorTool Name="GetHtmlContent" Text="INSERT TEXT FROM HTML" ShowText="true" 
                                        ShowIcon="false" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="AjaxSpellCheck" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="FindAndReplace" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Cut" /> 
                                    <telerik:EditorTool Name="Copy" /> 
                                    <telerik:EditorTool Name="Paste" /> 
                                    <telerik:EditorTool Name="PasteFromWordNoFontsNoSizes" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="Undo" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="Redo" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="ConvertToLower" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="ConvertToUpper" ShowIcon="true" /> 
                                    <telerik:EditorTool Name="FormatStripper" ShowIcon="true" /> 
                                    <telerik:EditorSeparator Visible="true" /> 
                                    <telerik:EditorTool Name="ToggleScreenMode" Text="Full Screen" /> 
                                    <telerik:EditorTool Name="ImageManager" Enabled="false" Visible="false" /> 
                                    <telerik:EditorTool Name="ImageEditor" Enabled="false" Visible="false" /> 
                                    <telerik:EditorTool Name="ImageMapDialog" Enabled="false" Visible="false" /> 
                                    <telerik:EditorTool Name="LinkManager" Enabled="false" Visible="false" /> 
                                    <telerik:EditorTool Name="Unlink" Enabled="false" Visible="false" /> 
                                </telerik:EditorToolGroup> 
                            </tools> 
                        </telerik:RadEditor> 
                    </telerik:RadPageView> 
                </telerik:RadMultiPage> 

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 19 Oct 2009, 07:30 AM
Hi Brian,

I noticed that you have set SkinID="BasicSetOfTools" property in both RadEditor declaration, which means that you have a Theme and a skin file in it.  Open the skin file and check whether the editor in it uses a toolsfile where the modules are not declared

ToolsFile.xml
<modules>
   
<module name="RadEditorStatistics" dockingZone="Bottom" enabled="true" visible="true"  />
    <
module name="RadEditorDomInspector" dockingZone="Module" enabled="true" visible="true"  />
    <
module name="RadEditorNodeInspector" dockingZone="Module" enabled="true" visible="true" />
    <
module name="RadEditorDiagnostics" dockingZone="Module" enabled="true" visible="true" />
    <
module name="RadEditorHtmlInspector" dockingZone="Module" enabled="true" visible="false"  />
</
modules>

or has a declaration similar to this one:

<telerik:RadEditor SkinID="BasicSetOfTools" runat="server">
    <modules>
        <telerik:EditorModule Name="RadEditorStatistics" Enabled="false" Visible="false" />
        <telerik:EditorModule Name="RadEditorNodeInspector" Enabled="false" Visible="false" />
        <telerik:EditorModule Name="RadEditorDomInspector" Enabled="false" Visible="false" />
    </modules>
</telerik:RadEditor>

All the best,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Editor
Asked by
Brian Garson
Top achievements
Rank 2
Answers by
Rumen
Telerik team
Share this question
or