Class CKEDITOR.dialog.definition.labeledElement
Extends
CKEDITOR.dialog.definition.uiElement.
Defined in: plugins/dialog/dialogDefinition.js.
Constructor Attributes | Constructor Name and Description |
---|---|
The definition of labeled user interface element (textarea, textInput etc).
|
Field Attributes | Field Name and Description |
---|---|
Specify the inline style of the input element container .
|
|
Specify the inline style of the input element.
|
|
The label of the UI element.
|
|
(Optional) Specify the layout of the label.
|
|
Specify the inline style of the uiElement label.
|
|
(Optional) Applies only to horizontal layouts: a two elements array of lengths to specify the widths of the
label and the content element.
|
- Fields borrowed from class CKEDITOR.dialog.definition.uiElement:
- align, className, commit, id, onHide, onLoad, onShow, setup, style, title, type
Class Detail
CKEDITOR.dialog.definition.labeledElement()
Since:
3.0
The definition of labeled user interface element (textarea, textInput etc).
This class is not really part of the API. It just illustrates the properties
that developers can use to define and create dialog UI elements.
// There is no constructor for this class, the user just has to define an // object with the appropriate properties.
Field Detail
{String}
controlStyle
Since:
3.6.1
Specify the inline style of the input element container .
{String}
inputStyle
Since:
3.6.1
Specify the inline style of the input element.
{String}
label
Since:
3.0
The label of the UI element.
{String}
labelLayout
Since:
3.0
(Optional) Specify the layout of the label. Set to 'horizontal' for horizontal layout.
The default layout is vertical.
{String}
labelStyle
Since:
3.0
Specify the inline style of the uiElement label.
{Array}
widths
Since:
3.0
(Optional) Applies only to horizontal layouts: a two elements array of lengths to specify the widths of the
label and the content element. See also CKEDITOR.dialog.definition.labeledElement#labelLayout.