#4210: CKEditor plugin for jQuery
----------------------------+-----------------------------------------------
 Reporter:  tobiasz.cudnik  |       Owner:              
     Type:  Bug             |      Status:  new         
 Priority:  Normal          |   Milestone:  CKEditor 3.1
Component:  General         |     Version:              
 Keywords:                  |  
----------------------------+-----------------------------------------------
 For CKEditor 3.1 there is planned a jQuery plugin, which will allow jQuery
 users easily integrate rich text editing into their's 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()

 // 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:
   2. submit
   3. ajaxSubmit
  2. Bridge textarea setter/getter val() with CKEditor

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/4210>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
FCKeditor-Trac mailing list
FCKeditor-Trac@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to