We can remove unwanter buttons from telerik RadEditor using following code. We just need to specify all the buttons which we need in an editor and their order.
<telerik:RadEditor runat="server" ID="EditorImageUrl">
<ImageManager ViewPaths="~/G/L,~/G/C" UploadPaths="~/G/L" DeletePaths="~/G/L" />
<Tools>
<telerik:EditorToolGroup Tag="MainToolbar">
<telerik:EditorTool Name="FindAndReplace" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="Undo" />
<telerik:EditorTool Name="Redo" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" ShortCut="CTRL+!" />
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="ForeColor" />
<telerik:EditorTool Name="BackColor" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="RealFontSize" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="ImageManager" />
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>
No comments:
Post a Comment