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

Missing the tool "InsertExternalVideo"

3 Answers 42 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Olle
Top achievements
Rank 1
Olle asked on 29 Apr 2015, 11:15 AM

Hi,

I can't see the tool "InsertExternalVideo". I have no ToolsFile.xml

What am i missing?

 

 

3 Answers, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 29 Apr 2015, 02:05 PM
Hi Olle,

The InsertExternalVideo is not part of the default Editor's tools and if you want to use it you will need to configure the tools for the control manually (either in the markup or a Tools file). You can examine this behavior by switching the different tools files from the configuration of this demo: Telerik ASP.NET Editor Overview

You can also find useful the following KB article where all set of tools (including the default one) are provided: Default ToolsFile.xml file of RadEditor for ASP.NET AJAX

Regards,
Vessy
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
0
Olle
Top achievements
Rank 1
answered on 30 Apr 2015, 07:23 AM
Is it possible to skip the Toolsfile.xml and add the tool at runtime?
0
Vessy
Telerik team
answered on 30 Apr 2015, 10:20 AM
Hi Olle,

Yes, you can skip the tools file and define the desired tools directly in the Editor's Tools inner tag:
<telerik:RadEditor ID="RadEditor1" runat="server">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="Cut" />
            <telerik:EditorTool Name="Copy" />
            <telerik:EditorTool Name="Paste" />
            <telerik:EditorTool Name="InsertExternalVideo" />
            <%--ETC.--%>
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>

You will also find useful information on how to add the tools programmatically to the Editor in the following help article: Adding Standard Buttons

Regards,
Vessy
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
Editor
Asked by
Olle
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Olle
Top achievements
Rank 1
Share this question
or