ckeditor_rule.js 706 B

123456789101112131415161718192021222324252627
  1. ckeditor = function(textareaid,ctx) {
  2. CKEDITOR.context =ctx;
  3. //构造对像
  4. var editor = CKEDITOR.replace(textareaid, {
  5. skin : 'office2003',
  6. height:60,
  7. toolbarCanCollapse : false,
  8. toolbarGroupCycling : true,
  9. extraPlugins:"subject,startUser,startDate,startTime,businessKey,vars",
  10. toolbar : [
  11. { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike'] },
  12. { name: 'styles', items : [ 'Font','FontSize' ] },
  13. { name: 'colors', items : [ 'TextColor','BGColor' ] },
  14. { name: 'tools', items : [ 'subject','startUser', 'startDate','startTime','businessKey','vars'] }
  15. ]
  16. });
  17. return editor;
  18. };