CKEDITOR.ui.dialog.fieldset
Form fieldset for grouping dialog UI elements.
Filtering
Properties
-  The event processor list used by getInputElement at UI element instantiation. The default list defines three on*events:- onLoad- Called when the element's parent dialog opens for the first time.
- onShow- Called whenever the element's parent dialog opens.
- onHide- Called whenever the element's parent dialog closes.- // This connects the 'click' event in CKEDITOR.ui.dialog.button to onClick // handlers in the UI element's definitions. CKEDITOR.ui.dialog.button.eventProcessors = CKEDITOR.tools.extend( {}, CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors, { onClick : function( dialog, func ) { this.on( 'click', func ); } }, true ); 
 
Methods
- inherited - constructor( dialog, elementDefinition, htmlList, [ nodeNameArg ], [ stylesArg ], [ attributesArg ], [ contentsArg ] ) → uiElement- CKEDITOR.ui.dialog.fieldset#constructor- Creates a uiElement class instance. - Parameters- dialog : dialog
- Parent dialog object. 
- elementDefinition : uiElement
- Element definition. - Accepted fields: - id(Required) The id of the UI element. See CKEDITOR.dialog.getContentElement.
- type(Required) The type of the UI element. The value to this field specifies which UI element class will be used to generate the final widget.
- title(Optional) The popup tooltip for the UI element.
- hidden(Optional) A flag that tells if the element should be initially visible.
- className(Optional) Additional CSS class names to add to the UI element. Separated by space.
- style(Optional) Additional CSS inline styles to add to the UI element. A semicolon (;) is required after the last style declaration.
- accessKey(Optional) The alphanumeric access key for this element. Access keys are automatically prefixed by CTRL.
- on*(Optional) Any UI element definition field that starts with- onfollowed immediately by a capital letter and probably more letters is an event handler. Event handlers may be further divided into registered event handlers and DOM event handlers. Please refer to registerEvents and eventProcessors for more information.
 
- htmlList : Array
- List of HTML code to be added to the dialog's content area. 
- [ nodeNameArg ] : Function | String
- A function returning a string, or a simple string for the node name for the root DOM node. - Defaults to - 'div'
- [ stylesArg ] : Function | Object
- A function returning an object, or a simple object for CSS styles applied to the DOM node. - Defaults to - {}
- [ attributesArg ] : Function | Object
- A fucntion returning an object, or a simple object for attributes applied to the DOM node. - Defaults to - {}
- [ contentsArg ] : Function | String
- A function returning a string, or a simple string for the HTML code inside the root DOM node. Default is empty string. - Defaults to - ''
 - Returns- uiElement
 
-  The default handler for a UI element's access key down event, which tries to put focus to the UI element. Can be overridded in child classes for more sophisticaed behavior. Parameters- dialog : dialog
- The parent dialog object. 
- key : String
- The key combination pressed. Since access keys are defined to always include the - CTRLkey, its value should always include a- 'CTRL+'prefix.
 
-  The default handler for a UI element's access key up event, which does nothing. Can be overridded in child classes for more sophisticated behavior. Parameters- dialog : dialog
- The parent dialog object. 
- key : String
- The key combination pressed. Since access keys are defined to always include the - CTRLkey, its value should always include a- 'CTRL+'prefix.
 
-  Disables a UI element. 
-  Enables a UI element. 
-  Puts the focus to the UI object. Switches tabs if the UI object isn't in the active tab page. uiElement.focus();Returns- uiElement
- this 
 
-  Gets the parent dialog object containing this UI element. var dialog = uiElement.getDialog();Returns- dialog
- Parent dialog object. 
 
-  Gets the root DOM element of this dialog UI object. uiElement.getElement().hide();Returns- element
- Root DOM element of UI object. 
 
-  Gets the current value of this dialog UI object. var myValue = uiElement.getValue();Returns- Object
- The current value. 
 
-  Tells whether the UI object's value has changed. if ( uiElement.isChanged() ) confirm( 'Value changed! Continue?' );Returns- Boolean
- trueif changed,- falseif not changed.
 
-  Determines whether an UI element is enabled or not. Returns- Boolean
- Whether the UI element is enabled. 
 
-  Determines whether an UI element is focus-able or not. Focus-able is defined as being both visible and enabled. Returns- Boolean
- Whether the UI element can be focused. 
 
-  Determines whether an UI element is visible or not. Returns- Boolean
- Whether the UI element is visible. 
 
- chainable inherited - registerEvents( definition ) → uiElement- CKEDITOR.ui.dialog.fieldset#registerEvents- Registers the - on*event handlers defined in the element definition.- The default behavior of this function is: - If the on* event is defined in the class's eventProcesors list, then the registration is delegated to the corresponding function in the eventProcessors list.
- If the on* event is not defined in the eventProcessors list, then register the event handler under the corresponding DOM event of the UI element's input DOM element (as defined by the return value of getInputElement).
 - This function is only called at UI element instantiation, but can be overridded in child classes if they require more flexibility. - Parameters- definition : uiElement
- The UI element definition. 
 - Returns- uiElement
- this 
 
-  Selects the parent tab of this element. Usually called by focus() or overridden focus() methods. focus : function() { this.selectParentTab(); // do something else. }Returns- uiElement
- this 
 
-  Sets the value of this dialog UI object. uiElement.setValue( 'Dingo' );Parameters- value : Object
- The new value. 
- noChangeEvent : Boolean
- Internal commit, to supress - changeevent on this element.
 Returns- uiElement
- this 
 
Events
- change( evt )- CKEDITOR.ui.dialog.fieldset#change