Hi mbcs,
You can use the code below to disable the italic and underline function. You can find other command name at http://cutesoft.net/developer+guide/scr/Toolbar_Customization.htm
- <script type="text/javascript">
- function CuteEditor_OnCommand(editor,command,ui,value)
- {
- if(command=="Italic"||command=="Underline")
- {
- return true;
- }
- }
- </script>
Regards,
Ken