https://www.r10.net/javascript-progr...-buradami.html

3
●208

tinymce.init({
selector: 'textarea#context-menu',
height: 500,
plugins: [
'link image imagetools table spellchecker lists'
],
contextmenu: 'image imagetools table spellchecker lists copy cut paste',
content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'
});Edit: çok basit bir işlem olduğu için ücret talep edilmesini etik bulmuyorum, umarım yukarıdaki kodu düzenleyerek sorununuzu çözebilirsiniz.
<script>
// TinyMCE başlatma işlemi
tinymce.init({
selector: "textarea",
plugins: "contextmenu",
contextmenu: "copy cut paste"
});
</script> tinymce olan yere en altta ekleyin.