Autor Zpráva
dede
Profil
dá se tiny_mce použít i pro jsp? nějak mi to neběhá tak se ptám nebo jestli znáte nějaký jiný
Moderátor Chamurappi: Upraven titulek, „for“ se řekne česky „pro“, kdybys to nevěděl.
joe
Profil
Proč by nedal, on je v tom na straně klienta snad nějaký rozdíl? Jak PHP, tak Java nebo cokoli dalšího ti jen "vyhodí" výslednou stránku a tyto editory pracují na JavaScriptu...
dede
Profil
joe:
jojo to vim že to běha na javasriptu ale když to tam implementuju tak se mi zobrazuje textarea pouze :/

<link rel="stylesheet" href="css/styl.css" type="text/css">
<%@page contentType="text/html" pageEncoding="windows-1250"%>

<script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
      // General options
      language : "en",
      mode : "textareas",
      theme : "advanced",
      plugins : "safari,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,imagemanager,filemanager",

      // 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,

      // Example content CSS (should be your site CSS)
      content_css : "css/styl.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>





<div class="sekce">Vytvořit nové téma <a href="index.jsp?stranka=nove_tema"><img class="nove_tema" src="pics/nove_tema.png" alt="nove tema" /></a></div>

    <div class="text">
        <form method="post" action="somepage">
      <textarea name="content" style="width:100%">
      </textarea>
</form>
</div>
Chamurappi
Profil
Reaguji na dede:
Jak to souvisí s JSP? Prohlížeč neví, co běží na serveru, a neví to ani TinyMCE. Jestli ti nefunguje, příčinu hledej jinde.
Joker
Profil
dede:
když to tam implementuju tak se mi zobrazuje textarea pouze
To není divu, když inicializace editoru (a tedy nahrazení <textarea> editorem) je dřív, než ta textarea.
Čili ve chvíli inicializace editoru žádná textarea neexistuje a nemá se co nahradit.
dede
Profil
Joker:
no takle mi to běhá když sem to dělal přes php bylo to i tak v tom vzoru z tiny_mce ale tady mi to nejde ani když to udělám takto
<link rel="stylesheet" href="css/styl.css" type="text/css">
<%@page contentType="text/html" pageEncoding="windows-1250"%>

<div class="sekce">Vytvořit nové téma <a href="index.jsp?stranka=nove_tema"><img class="nove_tema" src="pics/nove_tema.png" alt="nove tema" /></a></div>

    <div class="text">
        <form method="post" action="somepage">
      <textarea name="content" style="width:100%">
      </textarea>
</form>

<script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
      // General options
      language : "en",
      mode : "textareas",
      theme : "advanced",
      plugins : "safari,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,imagemanager,filemanager",

      // 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,

      // Example content CSS (should be your site CSS)
      content_css : "css/styl.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>
</div>

Vaše odpověď


Prosím používejte diakritiku a interpunkci.

Ochrana proti spamu. Napište prosím číslo dvě-sta čtyřicet-sedm:

0