I want to reference to name of dialogs, tabs, fields in CKeditor? Where of Document, are They?
exam: I read this code to reference to Image Dialog :
var dialogName = ev.data.name;
dialogName == 'link' ; // need know exact name of Dialog
reference to info tab:
var infoTab = dialogDefinition.getContents( 'info' ); ; // need know exact name of info tab in Link Dialog
// Set the default value for the URL field.
var urlField = infoTab.get( 'url' ); // need know exact name of url field
urlField['default'] = 'www.example.com';
So I want to know list of all name of dialogs, tabs, fields in CKeditor, plz anyone help me!
exam: I read this code to reference to Image Dialog :
var dialogName = ev.data.name;
dialogName == 'link' ; // need know exact name of Dialog
reference to info tab:
var infoTab = dialogDefinition.getContents( 'info' ); ; // need know exact name of info tab in Link Dialog
// Set the default value for the URL field.
var urlField = infoTab.get( 'url' ); // need know exact name of url field
urlField['default'] = 'www.example.com';
So I want to know list of all name of dialogs, tabs, fields in CKeditor, plz anyone help me!

Re: What is list of dialog/tab/field name ?
The way I found the id's was by looking in the /plugins/link/dialogs/link.js here the dialog is created and it is possible to see all id's...
Re: What is list of dialog/tab/field name ?
http://nightly.ckeditor.com/6922/_samples/devtools.html
Re: What is list of dialog/tab/field name ?
http://nightly.ckeditor.com/latest/cked ... tools.html
http://docs.cksource.com/CKEditor_3.x/Howto/Field_Names
release announcement
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: What is list of dialog/tab/field name ?
Re: What is list of dialog/tab/field name ?
Re: What is list of dialog/tab/field name ?
I need know exact id and i can use id in uploadify, exam $('#id_file_upload_tag').uploadify({ ....