5 Replies Latest reply on Nov 10, 2008 5:34 AM by senhce.senthil.balakrishnan.gmail.com

    FCKEditor integration

    buiri

      I want to integrate the FCKEditor into Seam. I am using Seam 2.0.2GA running on JBoss 4.2.2. My problem is that I only get a blank space but the editor is not showing.
      This is the code i am using:



      <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <ui:composition xmlns="http://www.w3.org/1999/xhtml"
                      xmlns:s="http://jboss.com/products/seam/taglib"
                      xmlns:ui="http://java.sun.com/jsf/facelets"
                      xmlns:f="http://java.sun.com/jsf/core"
                      xmlns:h="http://java.sun.com/jsf/html"
                      xmlns:rich="http://richfaces.org/rich"
                      template="layout/template.xhtml">
      
      
      
      <ui:define name="body">
      
              <script type="text/javascript" src="fckeditor/fckeditor.js"></script>
              <script type="text/javascript">
      
              window.onload = function()
              {
              var oFCKeditor = new FCKeditor( 'pageForm:xyz') ;
              oFCKeditor.BasePath = "fckeditor/" ;
              oFCKeditor.ToolbarSet = 'MyToolbar' ;
              oFCKeditor.ReplaceTextarea() ;
              }
              </script>
      
          <h:messages globalOnly="true" styleClass="message"/>
      
      
          <rich:panel>
      
                 <h:form id="pageForm">
                         Name: <h:inputText value=""/><br/>
                              <h:inputTextarea id="xyz" value="Test TEST"></h:inputTextarea>
                 </h:form>
      
          </rich:panel>
      
      
      </ui:define>
      </ui:composition>





      Any help would be appreciated.