Hi,
We've been using Telerik Ajax Asp.net version 2010 for a while.
We upgraded to 2012 a few days ago and we are facing an issue whit the Editor Tool Group associated to our radEditor.
The background of the docked editor buttons seems to have diseapear as you can see on the attached file.
I give you the code used to create this UserControl :
Is there any way to make those buttons to back as they were before ?
Thanks,
Guillaume
We've been using Telerik Ajax Asp.net version 2010 for a while.
We upgraded to 2012 a few days ago and we are facing an issue whit the Editor Tool Group associated to our radEditor.
The background of the docked editor buttons seems to have diseapear as you can see on the attached file.
I give you the code used to create this UserControl :
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ucIndiceTextBox.ascx.cs"
Inherits="RBCVTransCVN.UserControls.ucIndiceTextBox" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<
style
type
=
"text/css"
>
#<%= indiceTextBox.ClientID %>_contentDiv
{
min-height: 29px !important;
overflow: hidden;
}
.reContentCell
{
border-style: none !important;
}
</
style
>
<
div
style
=
"float: left; margin-right: 3px;"
>
<
telerik:RadEditor
ID
=
"indiceTextBox"
runat
=
"server"
EditModes
=
"Design"
EnableResize
=
"False"
onpaste
=
"fnTrimPaste(event)"
Width
=
"200px"
Height
=
"29px"
StripFormattingOptions
=
"AllExceptNewLines"
>
</
telerik:RadEditor
>
</
div
>
<
div
id
=
"rightDock"
style
=
"float: left; width: 56px; height: 27px;"
runat
=
"server"
>
</
div
>
protected
void
Page_Init(
object
sender, EventArgs e)
{
toolgroup =
new
EditorToolGroup();
toolgroup.Attributes[
"DockingZone"
] = rightDock.ClientID;
indiceTextBox.Tools.Add(toolgroup);
toolgroup.Tools.Add(
new
EditorTool(
"Superscript"
));
toolgroup.Tools.Add(
new
EditorTool(
"Subscript"
));
toolgroup.Attributes[
"ShowIcon"
] =
"True"
;
toolgroup.Attributes[
"ShowText"
] =
"False"
;
}
Is there any way to make those buttons to back as they were before ?
Thanks,
Guillaume