Opened 15 years ago

Last modified 14 years ago

#4210 closed New Feature

CKEditor plugin for jQuery — at Version 3

Reported by: Tobiasz Cudnik Owned by: Tobiasz Cudnik
Priority: Normal Milestone: CKEditor 3.1
Component: General Version:
Keywords: Confirmed Review+ Cc:

Description (last modified by Frederico Caldeira Knabben)

Create a jQuery plugin, which will allow jQuery users easily integrate rich text editing into their applications.

Mockup of planned API:

// chainably transform textareas into CKEditor instance
$('textarea').ckeditorCreate()

// extensive example
$('#editors textarea')
  .eq(0).ckeditorCreate({ lang: 'pl', width: 300 }).end()
  .eq(1).ckeditorCreate({ width: 500, height: 400 }).end()
  // more then one at once
  .slice(2).ckeditorCreate({ lang: 'ar' }).end()

// get instance (create it if needed)
$('textarea').ckeditor()

# access internal API methods

// get data from editor
$('textarea').ckeditor().getData()

// set data into editor
$('textarea').ckeditor().setData("New editor content")

// change ui color
$('textarea').ckeditor().setUiColor('#FFFFFF')

// remove editor from the page
$('textarea').ckeditor().destroy()

Possible, not confirmed:

  1. Automatically push instance data into textarea on events:
    1. submit
    2. ajaxSubmit
  2. Bridge textarea setter/getter val() with CKEditor
  3. Easy editor's content lookup using selectors

Change History (3)

comment:1 Changed 15 years ago by Tobiasz Cudnik

Owner: set to Tobiasz Cudnik
Status: newassigned

comment:2 Changed 15 years ago by Tobiasz Cudnik

Description: modified (diff)

comment:3 Changed 15 years ago by Frederico Caldeira Knabben

Description: modified (diff)
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy