Return to Snippet

Revision: 40537
at February 3, 2011 09:37 by lance


Initial Code
<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">        tinyMCE.init({
            //elements: "txtField1,txtField2",
            editor_deselector: "mceNoEditor",
            mode: "textareas",
            theme: "advanced",
            plugins: "safari,style,spellchecker,searchreplace,print,paste,directionality,fullscreen,noneditable,nonbreaking,xhtmlxtras,template",
            // Theme options   
            theme_advanced_buttons1: "bold,italic,underline,strikethrough,forecolor,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect",
            theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,spellchecker,|,ltr,rtl,|,fullscreen",
            theme_advanced_buttons3: "",
            theme_advanced_toolbar_location: "external",
            theme_advanced_toolbar_align: "left",
            //theme_advanced_statusbar_location: "bottom",
            theme_advanced_resizing: false,
            //theme_advanced_disable: "sup,sub,removeformat,hr,|,charmap,image",
            // Example content CSS (should be your site CSS)
            content_css: "../Stylesheets/Style.css",
            editor_css: "../JScripts/tiny_mce/themes/advanced/skins/default/tinyMCEUi.css",
            width: "100%",
            //height: "200",
            spellchecker_rpc_url: "../TinyMCEHandler.aspx?module=SpellChecker",
            readonly: '<%=myReadonly %>',
            //onchange_callback: "tinyMceOnChange",//for counter
            //handle_event_callback: "tinyMceEventHandler"//for counter
            paste_retain_style_properties: "font-size,font-family,font-style,color"
        });
</script>

Initial URL


Initial Description


Initial Title
TinyMCE configuration for rich textbox

Initial Tags


Initial Language
JavaScript