Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
How can i use the TinyMCE editor in a usercontrol ?
ok its easy:<script type="text/javascript" src="/umbraco_client/tinymce3/tiny_mce_src.js"></script><script type="text/javascript"> tinyMCE.init({ // General options mode: "textareas", theme: "advanced", plugins: "", // Theme options theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,formatselect,|,bullist,numlist,|,link,unlink,image", theme_advanced_buttons2: "", theme_advanced_buttons3: "", theme_advanced_toolbar_location: "top", theme_advanced_toolbar_align: "left", theme_advanced_resizing: false });</script>
Huge thanks for coming back and putting the code it... I had no clue how I was going to do this. Cheers!
I did this to get rid of 'potenial dangerous' blah blah error message.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
TinyMCE in a usercontrol
How can i use the TinyMCE editor in a usercontrol ?
ok its easy:
<script type="text/javascript" src="/umbraco_client/tinymce3/tiny_mce_src.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode: "textareas",
theme: "advanced",
plugins: "",
// Theme options
theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,formatselect,|,bullist,numlist,|,link,unlink,image",
theme_advanced_buttons2: "",
theme_advanced_buttons3: "",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_resizing: false
});
</script>
Huge thanks for coming back and putting the code it... I had no clue how I was going to do this. Cheers!
I did this to get rid of 'potenial dangerous' blah blah error message.
is working on a reply...