Re: Default Buttons

  •  01-24-2014, 7:24 AM

    Re: Default Buttons

    Hi cbeuker,

     

    You can try the code below. This api will fire when editor load, and the code  editor.ExecCommand("JustifyFull"); will execute command full justify.

     

    1. <script type="text/javascript">  
    2.        function CuteEditor_OnInitialized(editor)  
    3.        {  
    4.            editor.ExecCommand("JustifyFull");  
    5.        }  
    6. </script>  
     

    Regards,

     

    Ken 

View Complete Thread