I have a RadEditor with a defined height whose content will need to scroll if necessary. However, the control I've used (shown below) has no scroll bars by default. The CSS for the page defines overflow: hidden, which could be the culprit. However, when I've tried to specify overflow: auto (or scroll) for the editor, I get a scroll bar that encompasses the entire control (including the toolbar), That means the toolbar scrolls as well, which is obviously not the intent.
Any help is appreciated.
Any help is appreciated.
<telerik:RadEditor ID="Instructions" runat="server" Width="640px" Height="300px" Skin="Office2007" EnableResize="false" EditModes="Design">
<Tools>
<telerik:EditorToolGroup >
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>