0
我想通過將TinyMCe編輯器添加到Admin中的表單來爲我的CakePHP網站添加電源。如何將TinyMCe添加到CakePHP管理表單中?
我發現插件可用於http://cakedc.com/eng/downloads/view/tinymce,並遵循該網站上可用的步驟,但表格不顯示!
問候
我想通過將TinyMCe編輯器添加到Admin中的表單來爲我的CakePHP網站添加電源。如何將TinyMCe添加到CakePHP管理表單中?
我發現插件可用於http://cakedc.com/eng/downloads/view/tinymce,並遵循該網站上可用的步驟,但表格不顯示!
問候
你並不真的需要使用這個插件,只得到TinyMCE的代碼,並在您的模板是這樣的(切碎位爲清楚起見)對其進行設置:
<?php
echo "\n".$javascript->link('tiny_mce/tiny_mce.js',false);
?>
<script type="text/javascript">
$().ready(function() {
$('textarea').tinymce({
// Location of TinyMCE script
// // General options
theme : "advanced",
plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,...",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,fontselect,fontsizeselect,|,image,link,unlink,... :
"cut,copy,paste,pastetext,pasteword,|,search,replace,|,... ",
theme_advanced_buttons3 : "tablecontrols",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});
});
</script>
?>
我實際上是這樣做的,因此我可以將它放在需要的地方。研究TinyMCE wiki和api - 它們非常有用。
你能否將你的整個配置粘貼到tinymce? – Thariama 2010-07-15 07:59:40