123456789101112131415161718192021222324252627282930 |
- ckeditor = function(textareaid, ctx) {
- CKEDITOR.context = ctx;
- // 构造对像
- var editor = CKEDITOR.replace(
- textareaid,
- {
- skin : 'office2003',
- height : 160,
- toolbarCanCollapse : false,
- toolbarGroupCycling : true,
- extraPlugins : "subject,startUser,startDate,startTime,businessKey,vars,saveRule,readperson,sendperson,taskName,flowvars",
- toolbar : [
- {
- name : 'basicstyles',
- items : [ 'Source', 'Bold', 'Italic',
- 'Underline', 'Strike' ]
- }, {
- name : 'styles',
- items : [ 'Font', 'FontSize' ]
- }, {
- name : 'colors',
- items : [ 'TextColor', 'BGColor','sendperson','readperson','taskName','flowvars']
- }
- ]
- });
- return editor;
- };
|