Re: How to customize editor

  •  03-14-2012, 4:22 AM

    Re: How to customize editor

    HI demmett,
     
    #1
     
    I suggest you create the editor in an asp.net UserControl, and set the special settings for this editor. Then you can add this user control into each web page, it will has the default properties settings you need.
     
    #2
     
    Please try the demo below, it use the custom data provider to store the images into the database, not in the file system. 
     
    #3
     
    You can catch the editor id in the OnCommand API. Add the code below to the bottom of the page, it will shows the editor id for every command.
     
    <script>
    function CuteEditor_OnCommand(editor,command,ui,value)
     {
         alert(editor.id.replace("CE_","").replace("_ID",""));
     }
    </script>
     
     
    Regards,
     
    Ken 
View Complete Thread