Mailing List
Home
Forum Home
Maven - Project building tool
Axis - Java SOAP implementation
Lucene - Full-featured text search engine APIs
Cocoon - MVC web framework based on XML/XSL
Fop - Create PDF, PCL, PS, SVG, XML driven by XSL formatting objects.
Log4J - A log library
POI - Java Excel, Word and other Microsoft Office files manipulating library
Oracle database error code ...
Subjects
log4j warning: No appenders could be found
java security AccessControlException: access denied (java io FilePermission clie
java lang InstantiationException: org apache tools ant Main
Apache Axis Tutorial
Subject: Struts <logic iterate >
log4j properties How to parse outpu to multiple files
configuring log4j with BEA Weblogic 8 1
How to use XSL FOP Java together
JSP precompile
Proposal: Adding jar manifest classpath in jar and war plugins
Servlet File Download dialog problem (IE6,Adobe 6 0)
java security AccessControlException: access denied (java io FilePermission
Unsupported major minor version 48 0 problem while running the an
   telope task
Subject: axis wsdl2java Ant Task usage
net sf hibernate MappingException: Error reading resource: test/User hbm xml
Building EAR ANT Script for websphere 5 0
CREATING WAR Files
Classpath problem
jsp data into Excel
Jboss 3 2 3+ vs Tomcat Axis Question
RE: How to include jars and add them into the MANIFEST MF/Class Path
attribute
Printing problem
Subject: InstantiationException
Couldn 't find trusted certificate
Please : How can one install ant 1 6 0 under Eclipse 2 1 ?
Excel: Too many different cell formats
Subject: AXIS: tomcat timeout ?
1 3 final: now giving me java io FileNotFoundException (Too many
open files)
XDoclet, Struts and Maven: Where to start? SOLUTION
Subject: Running junit tests fails
 
Cforms default styling for textareas

Cforms default styling for textareas

2007-11-30       - By Rapha?l Pi?roni

 Back
Hi Guys,

in the default ps-cforms-defaut.xsl
that i copied in my project ther is some bug for displaying a texte area.

Here is the extract of my xsl  for enabling textareas :

   <xsl:template name="field">
       <xsl:param name="fieldelement"/>
       <xsl:choose>
           <xsl:when test="fi:styling/@(protected) = 'textarea'" >
               <textarea name="{$fieldelement/@(protected)}" >
                   <xsl:if test="fi:styling">
                       <xsl:copy-of select="fi:styling/@*[name() != 'type']"/>
                   </xsl:if>
                   <xsl:value-of select="$fieldelement/fi:value"/>
               </textarea>
           </xsl:when>
           <xsl:otherwise>
               <input name="{$fieldelement/@(protected)}"
value="{$fieldelement/fi:value}">
                   <xsl:if test="fi:styling">
                       <xsl:copy-of select="fi:styling/@*"/>
                   </xsl:if>
               </input>
           </xsl:otherwise>
       </xsl:choose>
   </xsl:template>


and here is the extract of the cform template to
define a textarea : <ft:widget id="description"><fi:styling
type="textarea" rows="8" cols="60" /></ft:widget>


Regards,

Rapha?l