ckeditor_sysTemp.js 784 B

12345678910111213141516171819202122232425262728
  1. ckeditor = function(textareaid, ctx) {
  2. CKEDITOR.context = ctx;
  3. // 系统模板编辑界面编辑器
  4. var editor = CKEDITOR.replace(
  5. textareaid,
  6. {
  7. skin : 'office2003',
  8. height : 100,
  9. toolbarCanCollapse : false,
  10. toolbarGroupCycling : true,
  11. extraPlugins : "jumpurl,readperson,sendperson,taskName,htmlDefForm,textDefForm",
  12. toolbar : [
  13. {
  14. name : 'basicstyles',
  15. items : [ 'Source', 'Bold', 'Italic',
  16. 'Underline', 'Strike' ]
  17. }, {
  18. name : 'styles',
  19. items : [ 'Font', 'FontSize' ]
  20. }, {
  21. name : 'colors',
  22. items : [ 'TextColor', 'BGColor','sendperson','readperson','jumpurl','taskName','htmlDefForm','textDefForm']
  23. }
  24. ]
  25. });
  26. return editor;
  27. };