MyPage is a personalized page based on your interests.The page is customized to help you to find content that matters you the most.


I'm not curious

How to activate Link and Unlink in CKEditor

0
Started on: 26 December 12
Participants: 1

Looking to add Link and Unlink in CKEditor button lists

my current code

 CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.toolbar = 'jmbar'; config.toolbar_jmbar = [ ['Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'], ]; config.toolbar = 'ButtonPre'; config.toolbar_ButtonPre = [ ['button-pre','Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent','-','Scayt'] ]; config.extraPlugins = "button-pre"; }; 
 Help me urgent 
Looking to add Link and Unlink in CKEditor button lists

my current code

CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.toolbar = 'jmbar'; config.toolbar_jmbar = [ ['Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'], ]; config.toolbar = 'ButtonPre'; config.toolbar_ButtonPre = [ ['button-pre','Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent','-','Scayt'] ]; config.extraPlugins = "button-pre"; }; Help me urgent
This challenge is listed under Open Source and Development & Implementations Community

Related Posts:

Initiator

Aravinthan
Aravinthan
  Follow

I am passinate about IT & PHP , Let's do it

More posts by: Aravinthan Asokan

1 Suggestion

  1. 26 December 12
    0

    Hi ,

    add Link and Unlink like the below sample

    config.toolbar_ButtonPre = [ ['button-pre','Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent','-','Scayt'], ['Link','Unlink'] ]; config.extraPlugins = "button-pre";

Awards & Accolades for MyTechLogy
Winner of
REDHERRING
Top 100 Asia
Finalist at SiTF Awards 2014 under the category Best Social & Community Product
Finalist at HR Vendor of the Year 2015 Awards under the category Best Learning Management System
Finalist at HR Vendor of the Year 2015 Awards under the category Best Talent Management Software
Hidden Image Url

Back to Top