| Name |
Description |
ActiveMode
|
ActiveModeType.
Gets or sets the active mode on load.
Default ActiveModeType.Design .
|
AutoFocus
|
Bool. Gets or sets a value indicating whether the Edit Panel will be focused on load.
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.
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.
Default true.
|
ClientID
|
String. Gets the server control identifier generated by ASP.NET.
(Inherited from Control.)
|
ContextMenu
|
Obout.Ajax.UI.HTMLEditor.ContextMenu.ContextMenu overridable.
Gets the associated Context Menu control.
|
ContextMenuID
|
String.
Gets or sets the associated Context Menu ID.
|
Content
|
String. Gets or sets the HTML content.
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.)
|
DefaultDirection
|
DocumentDirection.
Gets or sets the default direction in document.
Default DocumentDirection.Auto.
|
DefaultFontFamily
|
String. Gets or sets the font family used in all edit modes of the control.
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.
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.
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.
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.
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.
Default 30.
|
HtmlPanelCssClass
|
String. Gets or sets the CSS class for 'HTML text' mode panel.
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).
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.
Default true.
|
IndentInDesignMode
|
Int. Gets or sets the width of Indent (pixeles) in Design mode.
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.
Default false.
|
LinkedToolbars
|
String. Gets or sets the ID's of linked toolbars separated with ';' characters.
See online example.
|
NoDrop
|
Bool. Gets or sets a value indicating whether any dropping in Design mode is prohibited.
Default false.
|
NoPaste
|
Bool. Gets or sets a value indicating whether any pasting (except Plain Text) in Design mode is prohibited.
Default false.
|
NoScript
|
Bool. Gets or sets a value indicating whether JavaScript code will be suppressed in EditPanel's content.
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.
Default false.
|
OldTags
|
Bool. Gets or sets a value indicating whether to generate old-fashioned tags (bold, em, etc.).
Default false.
|
OnClientActiveModeChanged
|
String. Gets or sets the name of client-side function(handler) executed after edit mode is changed.
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.
This handler is added to the client-side event beforeActiveModeChanged,
see Client-Side.
|
OnClientGetContent
|
String. Gets or sets the name of client-side function(handler) executed when EditPanel is focused.
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.
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.
This handler is added to the client-side event loaded,
see Client-Side.
|
PlainText
|
String. Gets the plain text of the content.
|
PopupHolderID
|
String. Gets or sets the associated Popup Holder ID.
|
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.
Default true.
|
SuppressTabInDesignMode
|
Bool. Gets or sets a value indicating whether to ignore 'Tab' key in Design mode.
Default false.
|