Code Index | File Index

Namespaces

Classes


Class CKEDITOR.dialog.definition.uiElement


Defined in: plugins/dialog/dialogDefinition.js.

Class Summary
Constructor Attributes Constructor Name and Description
 
The definition of user interface element (textarea, radio etc).
Field Summary
Field Attributes Field Name and Description
 
Horizontal alignment (in container) of the UI element.
 
CSS class names to append to the UI element.
 
Function to execute whenever the UI element's parent dialog's CKEDITOR.dialog.definition.commitContent method is executed.
 
id
The id of the UI element.
 
Function to execute whenever the UI element's parent dialog is closed.
 
Function to execute the first time the UI element is displayed.
 
Function to execute whenever the UI element's parent dialog is displayed.
 
Function to execute whenever the UI element's parent dialog's CKEDITOR.dialog.definition.setupContent method is executed.
 
Inline CSS classes to append to the UI element.
 
The popup label of the UI element.
 
The type of the UI element.
Class Detail
CKEDITOR.dialog.definition.uiElement()
Since: 3.0
The definition of user interface element (textarea, radio 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.
See:
CKEDITOR.ui.dialog.uiElement
Field Detail
{String} align
Since: 3.0
Horizontal alignment (in container) of the UI element.

{String} className
Since: 3.0
CSS class names to append to the UI element.

{Function} commit
Since: 3.0
Function to execute whenever the UI element's parent dialog's CKEDITOR.dialog.definition.commitContent method is executed. It usually takes care of the respective UI element as a standalone element.

{String} id
Since: 3.0
The id of the UI element.

{Function} onHide
Since: 3.0
Function to execute whenever the UI element's parent dialog is closed.

{Function} onLoad
Since: 3.0
Function to execute the first time the UI element is displayed.

{Function} onShow
Since: 3.0
Function to execute whenever the UI element's parent dialog is displayed.

{Function} setup
Since: 3.0
Function to execute whenever the UI element's parent dialog's CKEDITOR.dialog.definition.setupContent method is executed. It usually takes care of the respective UI element as a standalone element.

{String} style
Since: 3.0
Inline CSS classes to append to the UI element.

{String} title
Since: 3.0
The popup label of the UI element.

{String} type
Since: 3.0
The type of the UI element. Required.

Copyright © 2003-2010, CKSource - Frederico Knabben. All rights reserved.