Hi
I am a new user and applying custom ckeditor to peoplesoft I have created custom toolbar & Custom Template in CKeditor.
I am getting the textbox and toolbox in the peoplesoft page but i am not getting custom template.
Note : Even when i removed the config.js file still I am getting toolbox. How is that possible ?
MY Config.js code is below
/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
// config.autoLanguage = false;
// config.defaultLanguage = 'pt-br';
config.skin='office2003';
config.resize_enabled = false;
config.removePlugins = 'elementspath';
config.toolbar =
[
['Maximize','Preview','Print','-','Cut','Copy','Paste','-','Undo','Redo','-','Find','Replace','-','HorizontalRule','Table','imageUPLOAD','Link','Unlink','SpecialChar'],
['Format','Font','FontSize','-','Bold','Italic','Underline','Strike'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','NumberedList','BulletedList','Outdent','Indent','-','TextColor','BGColor']
];
config.keystrokes =
[
[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ],
[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ],
[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ],
[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ],
[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ],
[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ],
[ CKEDITOR.CTRL + 76 /*L*/, 'link' ],
[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 76 /*L*/, 'unlink' ],
[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ],
[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ],
[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ],
[ CKEDITOR.CTRL + CKEDITOR.ALT + 13 /*ENTER*/, 'maximize' ],
[ CKEDITOR.CTRL + 77 /*M*/, 'imageUPLOAD' ]
];
};
Kindly help me.
Thanks & Regards
Mahadevan

Here's the toolbar
Here's the toolbar documentation for CKEditor 3 (I think that's what you're using). Here's the templates documentation.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Error In IE9 & IE10
Hi sebstefanov ,
Thanks for the reply.
I have applied the same Now it was working fine ie5, ie7 & ie8 but when I clicked the template icon. I am getting an error on IE9 & IE10 version.
SCRIPT5007: Unable to get property '0' of undefined or null reference
ckeditor.js, line 108 character 1663
Kindly help me on the above error.
Thanks & Regards
Mahadevan