Re: disable/deactivate hotkeys

  •  10-08-2014, 8:51 AM

    Re: disable/deactivate hotkeys

    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

     

    1. <script type="text/javascript">  
    2. function CuteEditor_OnCommand(editor,command,ui,value)  
    3.  {  
    4.     if(command=="Italic"||command=="Underline")  
    5.     {  
    6.         return true;  
    7.     }  
    8. }  
    9. </script>  
     

    Regards,

     

    Ken 

View Complete Thread