Changes between Version 7 and Version 8 of Ticket #4210
- Timestamp:
- Aug 6, 2009, 5:45:17 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4210 – Description
v7 v8 1 1 Create a jQuery plugin, which will allow jQuery users easily integrate rich text editing into their applications. 2 2 3 == Planned == 4 * All API mockups 5 * .ckeditor( func, config )[[BR]] 6 Create new editor instance and fire callback when ready. 7 * .ckeditorGet()[[BR]] 8 Get already existing editor instance. 9 * .ckeditorConfig()[[BR]] 10 Change global ckeditor config 11 * .val()[[BR]] 12 val() on textareas returns/sets data on the editor 13 * Some global CKEditor events 14 * create 15 * setData 16 * getData 17 * destroy 18 * Submit integration 19 * normal submit 20 * ajaxSubmit ? 21 3 22 Below mockup of planned API. 4 == Editor creation==23 === Editor creation === 5 24 {{{ 6 25 // chainably transform textareas into CKEditor instance … … 15 34 }}} 16 35 17 == Internal API access==36 === Internal API access === 18 37 {{{ 19 38 // get data from editor … … 38 57 }}} 39 58 40 == jQuery integration==59 === jQuery integration === 41 60 {{{ 42 61 // use val() to get data … … 52 71 53 72 Possible, not confirmed: 54 1. Automatically push instance data into textarea on events: 55 2. submit 56 3. ajaxSubmit 57 2. Easy editor's content lookup using selectors 73 1. Easy editor's content lookup using selectors