Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 9th, 2008, 05:47 AM
Authorized User
 
Join Date: Jul 2008
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default embedded <xsl:element> into <xsl:with-param>

hi,
i would like to change the font color of a string,which can be noun concept or verb concept.e.g."qualifiedDriver" or "workAt".to splitting it into atomic has been settled.different concept type will be displayed in different color.so first thing to do is changing its color,then splitting it.but browser reports following error.Error loading stylesheet: XPath parse failure: Name or Nodetype test expected.but i know <xsl:element> appears as child element inside <xsl:with-param> can anyone help me? below is code.
<xsl:call-template name="split">
  <xsl:with-param name="input" select="">
    <xsl:element name="font">
        <xsl:attribute name="color">green</xsl:attribute>
        <xsl:value-of select="Val"/>
    </xsl:element>
 </xsl:with-param>
</xsl:call-template>

 
Old July 9th, 2008, 06:22 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Omit the select="" attribute.

Node also, you could be a lot more concise and readable:

<xsl:with-param name="input">

     <xsl:value-of select="Val"/>

</xsl:with-param>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old July 9th, 2008, 06:36 AM
Registered User
 
Join Date: Jul 2008
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default

contains parameter






Similar Threads
Thread Thread Starter Forum Replies Last Post
Performance for <xsl:import> and <xsl:include> vikkiefd XSLT 2 April 16th, 2008 08:06 AM
<xsl:for-each> inside another <xsl:for-each> suersh79 XSLT 2 December 29th, 2006 01:24 AM
create <ul> with alternating class on <li> element Brian Campbell XSLT 2 November 3rd, 2006 06:07 PM
name attribute for <xsl:element> rushman XSLT 2 June 9th, 2005 09:04 AM
<xsl:choose> and <xsl:otherwise> problem djmarquette XSLT 4 January 21st, 2005 01:56 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.