Hi,
I am trying to add the the editor to a SharePoint 2010 web part in design mode. When the RadEditor is displayed on the page you are unable to scroll the page in IE unless you double click on the scroll bar? This is a very strange issue and I can't seem to find a fix.
my code to create the editor is:
Any help with this issue would be appreciated.
I am trying to add the the editor to a SharePoint 2010 web part in design mode. When the RadEditor is displayed on the page you are unable to scroll the page in IE unless you double click on the scroll bar? This is a very strange issue and I can't seem to find a fix.
my code to create the editor is:
if
(
this
.WebPartManager.DisplayMode == WebPartManager.DesignDisplayMode)
{
Telerik.Web.UI.RadEditor editor =
new
RadEditor();
editor.Width = 250;
editor.ToolbarMode = EditorToolbarMode.ShowOnFocus;
editor.Content =
this
.BoxContent;
editor.ToolsWidth = 250;
editor.BackColor = myColor;
Controls.Add(editor)
}
Any help with this issue would be appreciated.