Hi Joe,
Thank you Joe for your help and for your quick reply.
I shifted to CKEDITOR after what you told me.
I will be going to understand the CKEDITOR.editorConfig file.Inside the file js,
It sounds like a declaration of several configuration profiles,but it seems there is no choice among these lines. Probably the choice is in web.config.
----------------
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
// config.autoLanguage = false;
// config.defaultLanguage = 'pt-br';
// config.contentsLangDirection = 'rtl'
//config.theme = 'default';
config.entities = false;
//config.smiley_path = '/Data/SiteImages/emoticons/';
config.scayt_autoStartup = true;
config.toolbar_CKFull =
[
['Source','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
'/',
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['Maximize', 'ShowBlocks','-','About']
];
config.toolbar_Full =
[
['Source'],
['SelectAll', 'RemoveFormat', 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteWord', '-', 'Print', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace'],
'/',
['Blockquote','Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
'/',
['Styles'],
['Maximize']
];
config.toolbar_Newsletter =
[
['Source'],
['SelectAll', 'RemoveFormat', 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteWord', '-', 'Print', 'SpellChecker', 'Scayt'],
['Undo', 'Redo', '-', 'Find', 'Replace'],
'/',
['Blockquote', 'Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent'],
['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
['Link', 'Unlink', 'Anchor'],
['Image', 'Table', 'HorizontalRule', 'SpecialChar'],
'/',
['Format', 'Font', 'FontSize'],
['TextColor', 'BGColor'],
['Maximize','Preview']
];
config.toolbar_FullWithTemplates =
[
['Source'],
['SelectAll', 'RemoveFormat', 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteWord', '-', 'Print', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace'],
'/',
['Blockquote','Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
'/',
['Templates','Styles'],
['Maximize']
];
config.toolbar_Forum =
[
['Cut','Copy','PasteText','-'],
['Undo', 'Redo', '-', 'Find', 'Replace', 'SpellChecker', 'Scayt', '-', 'SelectAll', 'RemoveFormat'],
['Blockquote','Bold','Italic','Underline'],
['NumberedList', 'BulletedList'],
['Link','Unlink'],
['SpecialChar','Smiley']
];
config.toolbar_ForumWithImages =
[
['Cut','Copy','PasteText','-'],
['Undo','Redo','-','Find','Replace','SpellChecker', 'Scayt','-','SelectAll','RemoveFormat'],
['Blockquote','Bold','Italic','Underline','Image'],
['NumberedList', 'BulletedList'],
['Link','Unlink'],
['SpecialChar','Smiley']
];
config.toolbar_SimpleWithSource =
[
['Source','Cut','Copy','PasteText'],
['Blockquote', 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', 'SpellChecker', 'Scayt', 'Smiley']
];
config.toolbar_AnonymousUser =
[
['Cut','Copy','PasteText'],
['Blockquote', 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', 'Smiley']
];
};
---------------------------
Alex