CKEDITOR.dialog.definition.uiElement
The definition of a 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.
Filtering
Properties
- 
                        align : StringCKEDITOR.dialog.definition.uiElement#alignHorizontal alignment (in the container) of the UI element. 
- 
                        className : StringCKEDITOR.dialog.definition.uiElement#classNameCSS class names to append to the UI element. 
- 
                        commit : FunctionCKEDITOR.dialog.definition.uiElement#commitFunction to execute whenever the UI element's parent dialog's CKEDITOR.dialog.commitContent method is executed. It usually takes care of the respective UI element as a standalone element. 
- 
                        id : StringCKEDITOR.dialog.definition.uiElement#idThe ID of the UI element. 
- 
                        onHide : FunctionCKEDITOR.dialog.definition.uiElement#onHideFunction to execute whenever the UI element's parent dialog is closed. 
- 
                        onLoad : FunctionCKEDITOR.dialog.definition.uiElement#onLoadFunction to execute the first time the UI element is displayed. 
- 
                        onShow : FunctionCKEDITOR.dialog.definition.uiElement#onShowFunction to execute whenever the UI element's parent dialog is displayed. 
- 
                        requiredContent : String | Object | styleCKEDITOR.dialog.definition.uiElement#requiredContentThe content that needs to be allowed to enable this UI element. All formats accepted by CKEDITOR.filter.check may be used. When all UI elements in a tab are disabled, this tab will be disabled automatically. 
- 
                        setup : FunctionCKEDITOR.dialog.definition.uiElement#setupFunction to execute whenever the UI element's parent dialog's CKEDITOR.dialog.setupContent method is executed. It usually takes care of the respective UI element as a standalone element. 
- 
                        style : StringCKEDITOR.dialog.definition.uiElement#styleInline CSS classes to append to the UI element. 
- 
                        title : StringCKEDITOR.dialog.definition.uiElement#titleThe popup label of the UI element. 
- 
                        type : StringCKEDITOR.dialog.definition.uiElement#typeThe type of the UI element. Required.