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 ?
Maybe something like this?
http://nightly.ckeditor.com/6922/_samples/devtools.html
Re: What is list of dialog/tab/field name ?
Seems neither of you (excluding Alfonso, who was quicker than me to answer) had a chance to look at one of the latest plugins that were published with CKEditor 3.6. The Developer Tools plugin ("devtools") does exactly this: it shows the IDs of all dialog window elements, including the tabs and fields.
You can check the online sample for the nightly build here: http://nightly.ckeditor.com/latest/cked ... tools.html
or, obviously, download the installation package and see the devtools.html file from the "_samples" folder.
There is also a HOWTO article on this subject: http://docs.cksource.com/CKEditor_3.x/Howto/Field_Names
As mentioned in the release announcement, we are waiting for your feedback!
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 ?
This plugin is very useful, shouldn't it be mentioned on http://docs.cksource.com/CKEditor_3.x/D ... tomization ?
And It would be even more useful if it could show possible values for selects (comboboxes).
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({ ....