| Name |
Description |
ActiveMode
|
ActiveModeType.
Gets or sets the active mode on load.
(Inherited from EditPanel.)
Default ActiveModeType.Design .
|
AutoFocus
|
Bool. Gets or sets a value indicating whether the Edit Panel will be focused on load.
(Inherited from EditPanel.)
Default true.
|
BackColor
|
Color.
Gets or sets the background color of the control for all panels: Design, HTML text and Preview.
(Inherited from WebControl.)
|
CancelControls
|
String. Gets or sets
the semicolon separated identificators(ID) of controls that may cause a postback on which the posted content should be ignored by the EditPanel.
(Inherited from EditPanel.)
Default String.Empty .
In the following example the current Editor's content will not be posted to server on the Timer's Tick event.
It will be posted on the Submit button click only.
<asp:UpdatePanel runat="server" UpdateMode="Conditional" >
<ContentTemplate>
<obout:Editor EditPanel-CancelControls="Timer1" ... />
<asp:Button runat="server" Text="Submit" ID="Submit" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel runat="server" UpdateMode="Conditional" >
<ContentTemplate>
Server time: <asp:Label runat="server" ID="Label1" />
<asp:Timer ID="Timer1" runat="server" Interval="10000" ... />
</ContentTemplate>
</asp:UpdatePanel>
|
CaretPositionInDesignMode
|
Bool. Gets or sets a value indicating whether the initial caret position in Design mode
will be set at the document's start.
(Inherited from EditPanel.)
Default true.
|
ClientID
|
String. Gets the server control identifier generated by ASP.NET.
(Inherited from Control.)
|
ContextMenu
|
Obout.Ajax.UI.HTMLEditor.ContextMenu.ContextMenu overriden.
Gets the associated Context Menu control.
By default if ContextMenuID is empty, Obout.Ajax.UI.HTMLEditor.ContextMenu.DefaultContextMenu is returned.
|
ContextMenuID
|
String.
Gets or sets the associated Context Menu ID.
(Inherited from EditPanel.)
Default String.Empty .
|
Content
|
String. Gets or sets the HTML content.
(Inherited from EditPanel.)
Default String.Empty .
|
CssClass
|
String. Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server control on the client.
(Inherited from WebControl.)
By default when empty, "ajax__htmleditor_editor_editpanel" is used.
|
DefaultDirection
|
DocumentDirection.
Gets or sets the default direction in document.
(Inherited from EditPanel.)
Default DocumentDirection.Ltr.
|
DefaultFontFamily
|
String. Gets or sets the font family used in all edit modes of the control.
(Inherited from EditPanel.)
By default (String.Empty) values from the appropriate CSS files are used, see the DesignPanelCssPath, DocumentCssPath and HtmlPanelCssClass properties.
Example: DefaultFontFamily="Arial"
|
DefaultFontSize
|
String. Gets or sets the font size used in all edit modes of the control.
(Inherited from EditPanel.)
By default (String.Empty) values from the appropriate CSS files are used, see the DesignPanelCssPath, DocumentCssPath and HtmlPanelCssClass properties.
Example: DefaultFontSize="8pt"
|
DesignPanelCssPath
|
String. Gets or sets the document's CSS file path for 'design' mode.
(Inherited from EditPanel.)
By default (String.Empty) an embedded file is used.
Example: "~/styles/design.css"
|
DocumentCssPath
|
String. Gets or sets the document's CSS file path for 'design' and 'preview' modes.
(Inherited from EditPanel.)
By default (String.Empty) an embedded file is used.
Example: "~/styles/document.css"
|
FullHtml
|
Bool. Gets or sets a value indicating whether the content will be generated as
entire page HTML code with <HTML>, <HEAD> and <BODY> tags.
(Inherited from EditPanel.)
Default false.
See online example.
|
Height
|
Unit. Gets or sets the height of the control.
(Inherited from WebControl.)
|
HistorySizeInDesignMode
|
Int. Gets or sets the maximum length of undo/redo history in Design mode.
(Inherited from EditPanel.)
Default 30.
|
HtmlPanelCssClass
|
String. Gets or sets the CSS class for 'HTML text' mode panel.
(Inherited from EditPanel.)
By default when empty, "ajax__htmleditor_htmlpanel_default" is used.
|
ID
|
String. Gets or sets the programmatic identifier assigned to the server control.
(Inherited from Control.)
|
IgnoreTab
|
Bool. Gets or sets a value indicating whether to ignore the default 'Tab' key navigation
for all panels (tabIndex = -1).
(Inherited from EditPanel.)
Default false.
|
ImmediateValidation
|
Bool. Gets or sets a value indicating whether the ASP.NET validation will be run immediately on content set or Design panel blur.
(Inherited from EditPanel.)
Default true.
|
IndentInDesignMode
|
Int. Gets or sets the width of Indent (pixeles) in Design mode.
(Inherited from EditPanel.)
Default 40.
|
InitialCleanUp
|
Bool. Gets or sets a value indicating whether the inital cleanup (MS Word tags)
of the content will be done on the control load.
(Inherited from EditPanel.)
Default false.
|
LinkedToolbars
|
String. Gets or sets the ID's of linked toolbars separated with ';' characters.
(Inherited from EditPanel.)
See online example.
|
NoDrop
|
Bool. Gets or sets a value indicating whether any dropping in Design mode is prohibited.
(Inherited from EditPanel.)
Default false.
|
NoPaste
|
Bool. Gets or sets a value indicating whether any pasting (except Plain Text) in Design mode is prohibited.
(Inherited from EditPanel.)
Default false.
|
NoScript
|
Bool. Gets or sets a value indicating whether JavaScript code will be suppressed in EditPanel's content.
(Inherited from EditPanel.)
Default false.
|
NoUnicode
|
Bool. Gets or sets a value indicating whether Unicode characters
(hex codes from '0080' to 'FFFF') will be replaced with code; in EditPanel's content.
(Inherited from EditPanel.)
Default false.
|
OldTags
|
Bool. Gets or sets a value indicating whether to generate old-fashioned tags (bold, em, etc.).
(Inherited from EditPanel.)
Default false.
|
OnClientActiveModeChanged
|
String. Gets or sets the name of client-side function(handler) executed after edit mode is changed.
(Inherited from EditPanel.)
This handler is added to the client-side event activeModeChanged,
see Client-Side.
|
OnClientBeforeActiveModeChanged
|
String. Gets or sets the name of client-side function(handler) executed before edit mode is changed.
(Inherited from EditPanel.)
This handler is added to the client-side event beforeActiveModeChanged,
see Client-Side.
|
OnClientFocused
|
String. Gets or sets the name of client-side function(handler) executed when EditPanel is focused.
(Inherited from EditPanel.)
This handler is added to the client-side event focused,
see Client-Side.
See online example.
|
OnClientGetContent
|
String. Gets or sets the name of client-side function(handler) executed when EditPanel's content is obtained.
(Inherited from EditPanel.)
This handler is added to the client-side event getClient,
see Client-Side.
|
OnClientLoaded
|
String. Gets or sets the name of client-side function(handler) executed after the control's loading is complete.
(Inherited from EditPanel.)
This handler is added to the client-side event loaded,
see Client-Side.
|
PlainText
|
String. Gets the plain text of the content.
(Inherited from EditPanel.)
|
PopupHolderID
|
String. Gets or sets the associated Popup Holder ID.
(Inherited from EditPanel.)
|
ResizeByDraggingEnabled
|
Bool. Gets or sets a value indicating whether the resize-by-dragging tool is enabled
in Design mode for <IMG>, <DIV> etc. elements.
IE and FireFox have this tool only.
(Inherited from EditPanel.)
Default true.
|
SuppressTabInDesignMode
|
Bool. Gets or sets a value indicating whether to ignore 'Tab' key in Design mode.
(Inherited from EditPanel.)
Default false.
|