Hi! I already have solved it! By adding some custom code in Components > CKeditor > Advanced Settings > Custom JavaScript configuration I'm in joomla 1.5.10 This code I added:
CKEDITOR.on( 'dialogDefinition', function( ev )
{
// Take the dialog name and its definition from the event
// data.
var dialogName = ev.data.name;
var dialogDefinition = ev.data.definition;
// Check if the definition is from the dialog we're
// interested on (the "Link" dialog).
if ( dialogName == 'link' )
{
// Get a reference to the "Link Info" tab.
var infoTab = dialogDefinition.getContents( 'info' );
// Add a text field to the "info" tab.
infoTab.add( {
type : 'html',
html : 'HERE I HAVE WRITTEN MY TEXT',
id : 'customField',
'default' : 'Sample!',
});
}
});
Congratulations on solving the issue so quickly And thanks again for posting a full solution, this will be most helpful for other users looking for the same issue.
Congratulations to the team of CKeditor, for this excellent work! Always I can, I like post the solution to my problems posted in forums, because I usually learn these solutions in forums and I think this is the best way which I can help in forums. Best regards, Daniel
We would really like to have more community members with the same attitude as you, Daniel! Wouldn't you somehow be able to clone yourself or something?
Seriously, though, thanks for your kind words and hope to see your problem-solving skills here more often. We believe the power of the Open Source software lies not only in the software itself, but also in the community behind it, and you are a great example of that!
Re: link icon
Re: link icon
Hi! I already have solved it!
By adding some custom code in Components > CKeditor > Advanced Settings > Custom JavaScript configuration
I'm in joomla 1.5.10
This code I added:
Re: link icon
Congratulations on solving the issue so quickly And thanks again for posting a full solution, this will be most helpful for other users looking for the same issue.
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: link icon
Congratulations to the team of CKeditor, for this excellent work!
Always I can, I like post the solution to my problems posted in forums, because I usually learn these solutions in forums and I think this is the best way which I can help in forums.
Best regards, Daniel
Re: link icon
We would really like to have more community members with the same attitude as you, Daniel! Wouldn't you somehow be able to clone yourself or something?
Seriously, though, thanks for your kind words and hope to see your problem-solving skills here more often. We believe the power of the Open Source software lies not only in the software itself, but also in the community behind it, and you are a great example of that!
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!