Code Index

Namespaces

Classes


Class CKFinder.dialog.definition.radio


Extends CKFinder.dialog.definition.uiElement.

Class Summary
Constructor Attributes Constructor Name and Description
 
The definition of a radio group.
Field Summary
Field Attributes Field Name and Description
 
The default value.
 
An array of options.
 
The label of the UI element.
 
(Optional) The validation function.
Fields borrowed from class CKFinder.dialog.definition.uiElement:
accessKey, className, hidden, id, onBlur, onChange, onClick, onDblclick, onFocus, onHide, onKeyDown, onKeypress, onKeyup, onLoad, onMousedown, onMouseout, onMouseover, onMouseup, onShow, style, title, type
Class Detail
CKFinder.dialog.definition.radio()
Since: 2.0
The definition of a radio group.
This class is not really part of the API. It just illustrates the properties that developers can use to define and create groups of radio buttons.

Once the dialog is opened, the created element becomes a CKFinder.ui.dialog.radio object and can be accessed with CKFinder.dialog#getContentElement.
For a complete example of dialog definition, please check CKFinder.dialog.add.
// There is no constructor for this class, the user just has to define an
// object with the appropriate properties.

// Example:
{
	type : 'radio',
	id : 'country',
	label : 'Which country is bigger',
	items : [ [ 'France', 'FR' ], [ 'Germany', 'DE' ] ] ,
	style : 'color:green',
	'default' : 'DE',
	onClick : function() {
		// this = CKFinder.ui.dialog.radio
		alert( 'Current value: ' + this.getValue() );
	}
}
Field Detail
{String} default
Since: 2.0
The default value.

{Array} items
Since: 2.0
An array of options. Each option is a 1- or 2-item array of format [ 'Description', 'Value' ]. If 'Value' is missing, then the value would be assumed to be the same as the description.

{String} label
Since: 2.0
The label of the UI element.

{Function} validate
Since: 2.0
(Optional) The validation function.

Copyright © 2007-2015, CKSource - Frederico Knabben. All rights reserved.