Hello. I am attempting to manually create toolbars for my editor.
Two questions:
1) Is there a way to force a toolbar to the second row? We are transitioning to the telerik editor, and I would like the buttons to be as similar to our old editor as possible.
2) I am getting extra padding at the top of the editor - see attached screenshot. Is there a way to clear that out?
Below is my code. Thank you.
Two questions:
1) Is there a way to force a toolbar to the second row? We are transitioning to the telerik editor, and I would like the buttons to be as similar to our old editor as possible.
2) I am getting extra padding at the top of the editor - see attached screenshot. Is there a way to clear that out?
Below is my code. Thank you.
<telerik:radeditor runat="server" ID="radEditor" AllowScripts="false" OnClientCommandExecuting="OnClientCommandExecuting" OnClientLoad="OnClientLoad" AutoResizeHeight=false EnableResize="false" Skin="Vista" DialogHandlerUrl="~/Telerik.Web.UI.DialogHandler.axd"> <Tools> <telerik:EditorToolGroup> <telerik:EditorTool Name="Print" /> <telerik:EditorTool Name="Cut" /> <telerik:EditorTool Name="Copy" /> <telerik:EditorTool Name="Paste" /> <telerik:EditorTool Name="Undo" /> <telerik:EditorTool Name="Redo" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="Bold" /> <telerik:EditorTool Name="Italic" /> <telerik:EditorTool Name="Underline" /> <telerik:EditorTool Name="Strikethrough" /> <telerik:EditorTool Name="Superscript" /> <telerik:EditorTool Name="Subscript" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="ImageManager" /> <telerik:EditorTool Name="InsertLink" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="JustifyLeft" /> <telerik:EditorTool Name="JustifyCenter" /> <telerik:EditorTool Name="JustifyRight" /> <telerik:EditorTool Name="JustifyFull" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="InsertUnorderedList" /> <telerik:EditorTool Name="InsertOrderedList" /> <telerik:EditorTool Name="Indent" /> <telerik:EditorTool Name="Outdent" /> </telerik:EditorToolGroup> </Tools> </telerik:radeditor>