Frainer 0 Denunciar post Postado Abril 9, 2011 Ola Estou tentando usar o TinyMCE em um campo para envio de texto pro banco de dados, porém o Tinymce nao carrega... ele aparece apenas como se fosse um textarea. Ja tentei varios tutoriais, tanto element quanto helper-que gostei mais-, e sempre da erro. Alguem ja teria usado ele pra explicar o motivo, ou teria um exemplo pra eu estudar? Usei o cakePHP 1.3.8 junto ao tinyMCE 3.3.9.3 e 3.4.2, nenhum funcionou. Att Frainer Compartilhar este post Link para o post Compartilhar em outros sites
lucaswxp 22 Denunciar post Postado Abril 9, 2011 Como você está fazendo? Sempre usei o tinyMCE e foi de boa. Tente fazer na mão, sem uso de helpers/elements. Compartilhar este post Link para o post Compartilhar em outros sites
Frainer 0 Denunciar post Postado Abril 9, 2011 Entao... Usei os seguintes tutoriais: Tulio Faria - TinyMce Using TinyMCE with CakePHP TinyMCE helper Tambem tentei usar os codigos dos comentarios... mas nenhum funcionou... ç.ç Ja tentei fazer sem...deu erro, mas depois funcionou.. <script type="text/javascript" src="<?php echo $this->webroot;?>js/tiny_mce/tiny_mce.js"></script> <script type="text/javascript"> tinyMCE.init({ // General options mode : "textareas", theme : "advanced", plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template", // Theme options theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, // Skin options skin : "o2k7", skin_variant : "silver", // Example content CSS (should be your site CSS) content_css : "css/cake.css", // Drop lists for link/image/media/template dialogs template_external_list_url : "js/template_list.js", external_link_list_url : "js/link_list.js", external_image_list_url : "js/image_list.js", media_external_list_url : "js/media_list.js", // Replace values for the template plugin template_replace_values : { username : "Some User", staffid : "991234" } }); </script> <form method="post" action="somepage"> <textarea name="content" style="width:100%"></textarea> </form> Esse é o codigo... deu o mesmo erro, depois adicionei o '$this->webroot' no caminho, e ele funcionou. Se tento usar o helper junto a esse codigo, os dois fuincionam, mas se tento só com helper nao funciona. Pelo que entendi, ele esta com erro ao carregar o tiny_mce.js, e quando o script carrega por fora ele funciona. Ja tentei adicionar o $this->webroot no helper, mas nao adiantou. Compartilhar este post Link para o post Compartilhar em outros sites
Eduiagami 1 Denunciar post Postado Abril 9, 2011 Olá tudo bom? No helper faça as seguintes modificações Onde está: var $helpers = array('Javascript', 'Form'); Troque por: var $helpers = array('Javascript', 'Form', 'Html'); E na linha onde está: $this->Javascript->link('/js/tiny_mce/tiny_mce.js', false); Troque por: $this->Html->script('tiny_mce/tiny_mce.js',false); abraços Compartilhar este post Link para o post Compartilhar em outros sites
Frainer 0 Denunciar post Postado Abril 9, 2011 Obg, mas ainda nao funciona >.< Algum de vcs teria algum exemplo que possa me mandar? Realmente nao sei porq ele nao quer renderizar o campo... O mais estranho é que quando uso o helper(que nao funciona) junto ao script puro, ele funciona usando o que o script carregou separadamente... Ja nao sei se é erro no caminho ou no js. Frainer Compartilhar este post Link para o post Compartilhar em outros sites