Code Index

Namespaces

Classes


Class CKFinder.dialog.definition.file


Extends CKFinder.dialog.definition.uiElement.

Class Summary
Constructor Attributes Constructor Name and Description
 
The definition of a file upload input.
Field Summary
Field Attributes Field Name and Description
 
(Optional) The action attribute of the form element associated with this file upload input.
 
The label of the UI element.
 
The size 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.file()
Since: 2.0
The definition of a file upload input.
This class is not really part of the API. It just illustrates the properties that developers can use to define and create file upload elements.

Once the dialog is opened, the created element becomes a CKFinder.ui.dialog.file 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 : 'file',
	id : 'upload',
	label : 'Select file from your computer',
	size : 38
},
{
	type : 'fileButton',
	id : 'fileId',
	label : 'Upload file',
	'for' : [ 'tab1', 'upload' ]
	filebrowser : {
		onSelect : function( fileUrl, data ) {
			alert( 'Successfully uploaded: ' + fileUrl );
		}
	}
}
Field Detail
{String} action
Since: 2.0
(Optional) The action attribute of the form element associated with this file upload input. If empty, CKFinder will use path to server connector for currently opened folder.

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

{Number} size
Since: 2.0
The size of the UI element.

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

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